diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 2a6fa16b4f08..60aef8cd79bb 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,4 +1,3 @@
# To make sure Network PRs go to the right branch, e.g. network-april
-/src/Network/ @number213
-
+/src/Network/ @MikhailTryakhov
/src/Compute/ @bilaakpan-ms @sandido @dkulkarni-ms @haagha @madewithsmiles @MS-syh2qs @grizzlytheodore
diff --git a/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs b/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs
index 913fd2f12237..5af26b7cfbc1 100644
--- a/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs
+++ b/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs
@@ -48,7 +48,7 @@ public static bool HasProperty(this PSObject source, string name)
///
/// The type of the property to look for
/// The PSObject to check
- /// The name of the proeprty to look for
+ /// The name of the property to look for
/// true if the PSObject has a property with the given name, otherwise false
public static bool HasProperty(this PSObject source, string name)
{
@@ -211,7 +211,7 @@ public static void Populate(this IDictionary dictionary, string
/// Populate a list from a proprty of the given PSObject
///
/// The list to populate
- /// The name of the proeprty contiaing the list
+ /// The name of the property contiaing the list
/// The PSObject to populate the list from
public static void Populate(this IList list, string name, PSObject other)
{
diff --git a/src/Accounts/Authentication.ResourceManager/Properties/Resources.Designer.cs b/src/Accounts/Authentication.ResourceManager/Properties/Resources.Designer.cs
index 3b6b3b0f015f..ff04b4974e2e 100644
--- a/src/Accounts/Authentication.ResourceManager/Properties/Resources.Designer.cs
+++ b/src/Accounts/Authentication.ResourceManager/Properties/Resources.Designer.cs
@@ -1,4 +1,4 @@
-//------------------------------------------------------------------------------
+//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
diff --git a/src/Accounts/Authentication.Test/PSSerializationTests.cs b/src/Accounts/Authentication.Test/PSSerializationTests.cs
index b905706ffd54..7c6d480ae4ac 100644
--- a/src/Accounts/Authentication.Test/PSSerializationTests.cs
+++ b/src/Accounts/Authentication.Test/PSSerializationTests.cs
@@ -251,8 +251,8 @@ IAzureContext GetDefaultContext()
VersionProfile = "2017_09_25"
};
- context.SetProperty("ContextProeprty1", "ContextProperty1Value1", "ContextProperty1Value2");
- context.SetProperty("ContextProeprty2", "ContextProperty2Value1", "ContextProperty2Value2");
+ context.SetProperty("ContextProperty1", "ContextProperty1Value1", "ContextProperty1Value2");
+ context.SetProperty("ContextProperty2", "ContextProperty2Value1", "ContextProperty2Value2");
return context;
}
diff --git a/src/Accounts/Authentication/Properties/Resources.Designer.cs b/src/Accounts/Authentication/Properties/Resources.Designer.cs
index a6e1dcc0edfc..189db97f9731 100644
--- a/src/Accounts/Authentication/Properties/Resources.Designer.cs
+++ b/src/Accounts/Authentication/Properties/Resources.Designer.cs
@@ -1,4 +1,4 @@
-//------------------------------------------------------------------------------
+//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
@@ -708,4 +708,4 @@ public static string x86InProgramFiles {
}
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Batch/Batch.Test/Batch.Test.csproj b/src/Batch/Batch.Test/Batch.Test.csproj
index 81d75170c446..a3ddd286d2cd 100644
--- a/src/Batch/Batch.Test/Batch.Test.csproj
+++ b/src/Batch/Batch.Test/Batch.Test.csproj
@@ -17,7 +17,7 @@
-
+
diff --git a/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj b/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj
index 7b8705936dd2..45918098b97b 100644
--- a/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj
+++ b/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/Compute/Compute.Test/Compute.Test.csproj b/src/Compute/Compute.Test/Compute.Test.csproj
index 9c2081bbce21..c9b110ea5000 100644
--- a/src/Compute/Compute.Test/Compute.Test.csproj
+++ b/src/Compute/Compute.Test/Compute.Test.csproj
@@ -14,7 +14,7 @@
-
+
diff --git a/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.cs b/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.cs
index 41351b19accf..ee5a24180f3b 100644
--- a/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.cs
+++ b/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.cs
@@ -65,5 +65,34 @@ public void TestDiskEncryptionSet()
{
TestRunner.RunTestScript("Test-DiskEncryptionSet");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestDiskEncryptionSetConfigEncryptionType()
+ {
+ TestRunner.RunTestScript("Test-DiskEncryptionSetConfigEncryptionType");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestDiskAccessObject()
+ {
+ TestRunner.RunTestScript("Test-DiskAccessObject");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestDiskConfigDiskAccessNetworkAccess()
+ {
+ TestRunner.RunTestScript("Test-DiskConfigDiskAccessNetworkAccess");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestSnapshotConfigDiskAccessNetworkPolicy()
+ {
+ TestRunner.RunTestScript("Test-SnapshotConfigDiskAccessNetworkPolicy");
+ }
+
}
}
diff --git a/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.ps1
index 662c81f2d4b4..3de42f6b98ce 100644
--- a/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.ps1
+++ b/src/Compute/Compute.Test/ScenarioTests/DiskRPTests.ps1
@@ -921,3 +921,250 @@ function Test-DiskEncryptionSet
$encSet | Remove-AzDiskEncryptionSet -Force;
}
}
+
+<#
+.SYNOPSIS
+Testing the EncryptionType parameter passed to the Config obejct is inherited by an associated DiskEncryptionSet object.
+#>
+function Test-DiskEncryptionSetConfigEncryptionType
+{
+ # Setup
+ $loc = 'centraluseuap';
+ $rgname = 'adamGroupDES7';
+ $encryptionName = "enc" + $rgname;
+
+ $vaultName1 = 'kv15' + $rgname ;
+ $vaultName2 = 'kv16' + $rgname ;
+
+ try
+ {
+ <#
+ #
+ # Note: In order to record this test, you need to run the following commands to create KeyValut key and KeyVault secret in a separate Powershell window.
+ #
+ Note: In order to record this test, you need to run the following commands to create KeyValut key and KeyVault secret in a separate Powershell window.
+ $vaultName1 = 'kv15' + $rgname ;
+ $kekName1 = 'kek15' + $rgname;
+ $secretname1 = 'mysecret15';
+ $secretdata1 = 'mysecretvalue15';
+ $securestring1 = ConvertTo-SecureString $secretdata1 -Force -AsPlainText;
+
+ $vaultName2 = 'kv16' + $rgname;
+ $kekName2 = 'kek15' + $rgname; #not a typo
+ $secretname2 = 'mysecret16';
+ $secretdata2 = 'mysecretvalue16';
+ $securestring2 = ConvertTo-SecureString $secretdata1 -Force -AsPlainText;
+
+ New-AzResourceGroup -Name $rgname -Location $loc -Force;
+ $vault1 = New-AzKeyVault -VaultName $vaultName1 -ResourceGroupName $rgname -Location $loc -Sku Standard;
+ $vault2 = New-AzKeyVault -VaultName $vaultName2 -ResourceGroupName $rgname -Location $loc -Sku Standard;
+ $mocksourcevault1 = $vault1.ResourceId;
+ $mocksourcevault2 = $vault2.ResourceId;
+ $userPrincipalName = (Get-AzContext).Account.Id;
+ Set-AzKeyVaultAccessPolicy -VaultName $vaultName1 -ResourceGroupName $rgname -EnabledForDiskEncryption;
+ Set-AzKeyVaultAccessPolicy -VaultName $vaultName2 -ResourceGroupName $rgname -EnabledForDiskEncryption;
+ $kek1 = Add-AzKeyVaultKey -VaultName $vaultName1 -Name $kekName1 -Destination "Software";
+ $kek2 = Add-AzKeyVaultKey -VaultName $vaultName2 -Name $kekName2 -Destination "Software";
+ $secret1 = Set-AzKeyVaultSecret -VaultName $vaultName1 -Name $secretname1 -SecretValue $securestring1;
+ $secret2 = Set-AzKeyVaultSecret -VaultName $vaultName2 -Name $secretname2 -SecretValue $securestring2;
+ $mockkey1 = $kek1.Id
+ $mockkey2 = $kek2.Id
+ #>
+
+ $mockkey1 = "https://kv15adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/74332f302a0e48999415f6f9bbf7430c";
+ $mockkey2 = "https://kv16adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/84412eaa63f344bf8a1b15612f2b36cb";
+ $subId = Get-SubscriptionIdFromResourceGroup $rgname;
+ $mocksourcevault1 = '/subscriptions/' + $subId + '/resourceGroups/' + $rgname + '/providers/Microsoft.KeyVault/vaults/' + $vaultName1;
+ $mocksourcevault2 = '/subscriptions/' + $subId + '/resourceGroups/' + $rgname + '/providers/Microsoft.KeyVault/vaults/' + $vaultName2;
+
+ $encryptionType = "EncryptionAtRestWithPlatformAndCustomerKeys";
+
+ $encSetConfig = New-AzDiskEncryptionSetConfig -Location $loc -EncryptionType $encryptionType;
+
+ $encSetConfigValues = New-AzDiskEncryptionSetConfig -Location $loc -KeyUrl $mockkey1 -SourceVaultId $mocksourcevault1 -EncryptionType $encryptionType -IdentityType "SystemAssigned" `
+
+ $encSet = New-AzDiskEncryptionSet -ResourceGroupName $rgname -Name $encryptionName -DiskEncryptionSet $encSetConfigValues;
+
+ Assert-NotNull $encSetConfig;
+ Assert-AreEqual $encSetConfig.EncryptionType $encryptionType;
+
+ Assert-NotNull $encSet;
+ Assert-AreEqual $encryptionType $encSet.EncryptionType;
+
+ # Test default EncryptionType value
+ $encSetConfigDefault = New-AzDiskEncryptionSetConfig -Location $loc -KeyUrl $mockkey2 -SourceVaultId $mocksourcevault2 -IdentityType "SystemAssigned";
+ Assert-NotNull $encSetConfigDefault;
+ Assert-AreEqual $encSetDefaultConfig.EncryptionType $null;
+
+ $encryptionNameDefault = $encryptionName + "Default";
+ $encryptionTypeDefault = "EncryptionAtRestWithCustomerKey";
+
+ $encSetDefault = New-AzDiskEncryptionSet -ResourceGroupName $rgname -Name $encryptionNameDefault -DiskEncryptionSet $encSetConfigDefault;
+ Assert-NotNull $encSetDefault;
+ Assert-AreEqual $encSetDefault.EncryptionType $encryptionTypeDefault;
+
+ }
+ finally
+ {
+ # Cleanup
+ $encSet | Remove-AzDiskEncryptionSet -Force;
+ $encSetDefault | Remove-AzDiskEncryptionSet -Force;
+ }
+}
+
+<#
+.SYNOPSIS
+Testing diskAssess object
+#>
+function Test-DiskAccessObject
+{
+ $rgname = Get-ComputeTestResourceName;
+ $rgname2 = $rgname + '2';
+ $diskname1Rg1 = 'diskaccess1' + $rgname;
+ $diskName2Rg1 = 'diskAccess2' + $rgname;
+ $diskName3Rg2 = 'diskAccess1' + $rgname2;
+
+ try
+ {
+ # Common
+ $loc = "northcentralus";
+ New-AzResourceGroup -Name $rgname -Location $loc -Force;
+ New-AzResourceGroup -Name $rgname2 -Location $loc -Force;
+
+ #Create DiskAccess1 in ResourceGroup1
+ New-AzDiskAccess -ResourceGroupName $rgname -Name $diskname1Rg1 -location $loc
+
+ #Use Get-AzDiskAccess on DiskAccess1 using Default ParameterSet
+ $diskAccess1 = Get-AzDiskAccess -ResourceGroupName $rgname -Name $diskname1Rg1
+ #Use Get-AzDiskAccess on DiskAccess1 using resourceId
+ $diskAccess1check = Get-AzDiskAccess -resourceId $diskAccess1.id
+
+ #check if diskAccess1 is good
+ Assert-NotNull $diskAccess1
+ Assert-AreEqual $diskAccess1.Name $diskname1Rg1
+
+ #ASSERT check if diskaccess1 and diskaccess1check are same
+ Assert-AreEqual $diskAccess1.id $diskAccess1check.id
+
+ #Create DiskAccess2 in ResourceGroup1
+ New-AzDiskAccess -ResourceGroupName $rgname -Name $diskname2Rg1 -location $loc
+
+ #Use Get-AzDiskAccess by resourceGroupName
+ $rg1Result = Get-AzDiskAccess -ResourceGroupName $rgname
+
+ Assert-AreEqual $rg1Result.count 2
+
+ #add DiskAccess3 to ResourceGroup2
+ New-AzDiskAccess -ResourceGroupName $rgname2 -Name $diskname3Rg2 -location $loc
+
+ #use get-azdiskaccess with no parameters. count should be >= 3
+ $allResult = Get-AzDiskAccess
+
+ Assert-True {$allResult.Count -gt 2;}
+
+ #remove-AzDiskAccess to DiskAccess1 by resourceId
+ Remove-AzDiskAccess -resourceid $diskAccess1.id
+
+ #Remove-AzDiskAccess to DiskAccess2 by default parameter set
+ Remove-AzDiskAccess -ResourceGroupName $rgname -Name $diskname2Rg1
+
+ #Get-AzDiskAccess by resource group. Count should be 0
+ $allResult = Get-AzDiskAccess -ResourceGroupName $rgname
+
+ Assert-AreEqual $allResult.count 0
+
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ Clean-ResourceGroup $rgname2
+ }
+}
+
+<#
+.SYNOPSIS
+Testing DiskConfig property NetworkAccessPolicy
+#>
+function Test-DiskConfigDiskAccessNetworkAccess
+{
+ # Setup
+ $rgname = Get-ComputeTestResourceName;
+ $diskname0 = 'disk0' + $rgname;
+
+ try
+ {
+ # Common
+ $loc = Get-ComputeVMLocation;
+ New-AzResourceGroup -Name $rgname -Location $loc -Force;
+
+ #Testing disk access
+ $diskAccess = New-AzDiskAccess -ResourceGroupName $rgname -Name "diskaccessname" -location $loc
+ $diskconfig = New-AzDiskConfig -Location $loc -SkuName 'Standard_LRS' -OsType 'Windows' `
+ -UploadSizeInBytes 35183298347520 -CreateOption 'Upload' -DiskAccessId $diskAccess.Id;
+ New-AzDisk -ResourceGroupName $rgname -DiskName $diskname0 -Disk $diskconfig;
+ $disk = Get-AzDisk -ResourceGroupName $rgname -DiskName $diskname0;
+
+ Assert-AreEqual $diskAccess.Id $disk.DiskAccessId;
+
+ Remove-AzDisk -ResourceGroupName $rgname -DiskName $diskname0 -Force;
+
+ $diskconfig2 = New-AzDiskConfig -Location $loc -SkuName 'Standard_LRS' -OsType 'Windows' `
+ -UploadSizeInBytes 35183298347520 -CreateOption 'Upload' -NetworkAccessPolicy "AllowAll";
+ New-AzDisk -ResourceGroupName $rgname -DiskName $diskname0 -Disk $diskconfig2;
+ $disk2 = Get-AzDisk -ResourceGroupName $rgname -DiskName $diskname0;
+ Assert-AreEqual "AllowAll" $disk2.NetworkAccessPolicy;
+
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Testing SnapshotConfig property NetworkAccessPolicy
+#>
+function Test-SnapshotConfigDiskAccessNetworkPolicy
+{
+ # Setup
+ $rgname = Get-ComputeTestResourceName;
+ $snapshotname = 'snapshot' + $rgname;
+
+ try
+ {
+ # Common
+ $loc = Get-ComputeVMLocation;
+ New-AzResourceGroup -Name $rgname -Location $loc -Force;
+
+ # Config and create test
+ $diskAccess = New-AzDiskAccess -ResourceGroupName $rgname -Name "diskaccessname" -location $loc
+
+ $snapshotconfig = New-AzSnapshotConfig -Location $loc -DiskSizeGB 5 -AccountType Standard_LRS -OsType Windows -CreateOption Empty `
+ -EncryptionSettingsEnabled $true -HyperVGeneration "V2" -DiskAccessId $diskAccess.Id;
+
+ $snapshotconfig.EncryptionSettingsCollection.Enabled = $false;
+ $snapshotconfig.EncryptionSettingsCollection.EncryptionSettings = $null;
+ $snapshotconfig.CreationData.ImageReference = $null;
+ $job = New-AzSnapshot -ResourceGroupName $rgname -SnapshotName $snapshotname -Snapshot $snapshotconfig -AsJob;
+ $result = $job | Wait-Job;
+ Assert-AreEqual "Completed" $result.State;
+
+ $snapshot = Get-AzSnapshot -ResourceGroupName $rgname
+ Assert-AreEqual $diskAccess.Id $snapshot.DiskAccessId
+
+ # Remove test
+ $job = Remove-AzSnapshot -ResourceGroupName $rgname -SnapshotName $snapshotname -Force -AsJob;
+ $result = $job | Wait-Job;
+ Assert-AreEqual "Completed" $result.State;
+ $st = $job | Receive-Job;
+ Verify-PSOperationStatusResponse $st;
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
diff --git a/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs
index 287e704eacd1..8eddef3d912e 100644
--- a/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs
+++ b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs
@@ -17,5 +17,14 @@ public void TestInvokeAzVmPatchAssessment()
{
TestRunner.RunTestScript("Test-InvokeAzVmPatchAssessment");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestPatchStatusGetAzVMinstanceview()
+ {
+ TestRunner.RunTestScript("Test-PatchStatusGetAzVMinstanceview");
+ }
+
+
}
}
diff --git a/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1
index 763c8f5aef0f..dfedec66fc4f 100644
--- a/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1
+++ b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1
@@ -73,4 +73,47 @@ function Test-InvokeAzVmPatchAssessment
# Cleanup
Clean-ResourceGroup $rgname
}
+}
+
+
+<#
+.SYNOPSIS
+Test PatchStatus in Get-Azvm instance view
+#>
+function Test-PatchStatusGetAzVMinstanceview
+{
+ # Setup
+ $rgname = Get-ComputeTestResourceName
+
+ try
+ {
+ # Common
+ $loc = Get-ComputeVMLocation;
+ $loc = $loc.Replace(' ', '');
+
+ New-AzResourceGroup -Name $rgname -Location $loc -Force;
+
+ # VM Profile & Hardware
+ $vmsize = Get-AvailableSku $loc "virtualMachine"
+ $vmname = 'vm' + $rgname;
+
+ $username = "admin01"
+ $password = Get-PasswordForVM | ConvertTo-SecureString -AsPlainText -Force
+ $cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $password
+ [string]$domainNameLabel = "$vmname-$vmname".tolower();
+
+ $x = New-AzVM -ResourceGroupName $rgname -Name $vmname -Location $loc -Credential $cred -DomainNameLabel $domainNameLabel
+ $patchResult = invoke-azvmpatchAssessment -resourcegroupname $rgname -vmname $vmname
+
+ $vm = Get-AzVM -ResourceGroupName $rgname -Name $vmname -Status;
+
+ Assert-NotNull $vm.PatchStatus;
+ Assert-NotNull $vm.PatchStatus.availablePatchSummary;
+ Assert-AreEqual "Succeeded" $vm.PatchStatus.availablePatchSummary.status;
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
}
\ No newline at end of file
diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskAccessObject.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskAccessObject.json
new file mode 100644
index 000000000000..370006d381ba
--- /dev/null
+++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskAccessObject.json
@@ -0,0 +1,2498 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps5010?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"northcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed43ee6b-c001-4889-96b5-96c58765efee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "36"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "cd2c1270-f1e7-4485-83f3-6c2a90bce693"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd2c1270-f1e7-4485-83f3-6c2a90bce693"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164035Z:cd2c1270-f1e7-4485-83f3-6c2a90bce693"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:40:35 GMT"
+ ],
+ "Content-Length": [
+ "187"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010\",\r\n \"name\": \"crptestps5010\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps50102?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUwMTAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"northcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a5e397f1-e0d5-4ab4-b87c-f6daacab9ae7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "36"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "4d6bfefe-9733-407f-bb8e-52d70e75de0c"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d6bfefe-9733-407f-bb8e-52d70e75de0c"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164036Z:4d6bfefe-9733-407f-bb8e-52d70e75de0c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:40:36 GMT"
+ ],
+ "Content-Length": [
+ "189"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps50102\",\r\n \"name\": \"crptestps50102\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzMWNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"northcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39d8047b-e028-41c2-bd58-c53124742f70"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "36"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/d230ff42-4709-4def-8beb-aea56c3d7835?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/d230ff42-4709-4def-8beb-aea56c3d7835?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "d230ff42-4709-4def-8beb-aea56c3d7835"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a62403d-fc2d-43d0-85e7-afa0c0aa4748"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164038Z:7a62403d-fc2d-43d0-85e7-afa0c0aa4748"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:40:38 GMT"
+ ],
+ "Content-Length": [
+ "120"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/d230ff42-4709-4def-8beb-aea56c3d7835?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvZDIzMGZmNDItNDcwOS00ZGVmLThiZWItYWVhNTZjM2Q3ODM1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399986"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "5d91d223-a9a2-445d-b353-e21090649fcc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "292f5e83-47f1-41a8-ba53-ac0af198f533"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164109Z:292f5e83-47f1-41a8-ba53-ac0af198f533"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:08 GMT"
+ ],
+ "Content-Length": [
+ "579"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T12:40:38.7898767-04:00\",\r\n \"endTime\": \"2020-08-13T12:40:39.3992853-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:40:38.7898767-04:00\"\r\n }\r\n }\r\n },\r\n \"name\": \"d230ff42-4709-4def-8beb-aea56c3d7835\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzMWNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "f4e2a25f-dad8-4c41-8280-ce9ead5dfbb6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1cd745c-f0b7-4849-9c13-855ae93ab64e"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164109Z:b1cd745c-f0b7-4849-9c13-855ae93ab64e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:08 GMT"
+ ],
+ "Content-Length": [
+ "399"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:40:38.7898767-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzMWNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0cc5ccc1-b0ab-4df7-b483-2fc77381eda8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "d95944de-f6f5-4a18-8eeb-ee618b1fd234"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "83e8ca68-a78d-4a32-8c31-adc49d84b720"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164110Z:83e8ca68-a78d-4a32-8c31-adc49d84b720"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:09 GMT"
+ ],
+ "Content-Length": [
+ "399"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:40:38.7898767-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL0NSUFRFU1RQUzUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzMWNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13fbf5bd-1548-4259-b9f2-8bd2e34f36fb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "54ef1134-9b5e-4d31-a956-3cd12ed09ede"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d194ca2-6ece-49bd-bf14-acfc061d7ecf"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164110Z:3d194ca2-6ece-49bd-bf14-acfc061d7ecf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:09 GMT"
+ ],
+ "Content-Length": [
+ "399"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:40:38.7898767-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrQWNjZXNzMmNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"northcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c579129d-52db-48a3-b5ae-64932c07b4cc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "36"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/9847808f-d301-4aff-a310-a266f1c81b90?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/9847808f-d301-4aff-a310-a266f1c81b90?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "9847808f-d301-4aff-a310-a266f1c81b90"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "645365ad-6a02-4643-be40-68b522ddcd3c"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164112Z:645365ad-6a02-4643-be40-68b522ddcd3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:12 GMT"
+ ],
+ "Content-Length": [
+ "120"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskAccess2crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/9847808f-d301-4aff-a310-a266f1c81b90?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvOTg0NzgwOGYtZDMwMS00YWZmLWEzMTAtYTI2NmYxYzgxYjkwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399983"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "d1e9df0c-8c26-4201-b582-58b78f79fe94"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "6752d211-dc45-4bbd-b336-5d9dc1dd31ac"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164142Z:6752d211-dc45-4bbd-b336-5d9dc1dd31ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:41 GMT"
+ ],
+ "Content-Length": [
+ "579"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T12:41:12.0405662-04:00\",\r\n \"endTime\": \"2020-08-13T12:41:12.6187172-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskAccess2crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:12.0405662-04:00\"\r\n }\r\n }\r\n },\r\n \"name\": \"9847808f-d301-4aff-a310-a266f1c81b90\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrQWNjZXNzMmNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "55df0716-297c-4c4a-8423-8dbbb994ca1c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb544303-7d54-4cc7-a504-cfe16988b2e8"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164142Z:eb544303-7d54-4cc7-a504-cfe16988b2e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:42 GMT"
+ ],
+ "Content-Length": [
+ "399"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskAccess2crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:12.0405662-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ce759c9e-39b2-4845-b41f-da6ef4b860d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "b5b8448e-bc21-4776-8796-79156a151c4c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "54123765-395a-41cf-baed-9534021bd9eb"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164142Z:54123765-395a-41cf-baed-9534021bd9eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:42 GMT"
+ ],
+ "Content-Length": [
+ "906"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:40:38.7898767-04:00\"\r\n }\r\n },\r\n {\r\n \"name\": \"diskAccess2crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:12.0405662-04:00\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9cdbdc3-24bf-4a48-b790-046b15f1a48b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "84d2cbe7-0c4a-4674-83f0-061e3e63dfab"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "38ce00b9-70e7-4bf8-8ec6-f5e5cd8f1508"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164317Z:38ce00b9-70e7-4bf8-8ec6-f5e5cd8f1508"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:43:17 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps50102/providers/Microsoft.Compute/diskAccesses/diskAccess1crptestps50102?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9kaXNrQWNjZXNzZXMvZGlza0FjY2VzczFjcnB0ZXN0cHM1MDEwMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"northcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5b2e266c-6c1d-413a-83f3-26a49366d407"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "36"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/f94f51e5-ac0d-4b4a-bbcc-7f364dd901b5?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/f94f51e5-ac0d-4b4a-bbcc-7f364dd901b5?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "f94f51e5-ac0d-4b4a-bbcc-7f364dd901b5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "90a26cb0-4eba-4ba5-bf2b-e63d60da041f"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164145Z:90a26cb0-4eba-4ba5-bf2b-e63d60da041f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:41:44 GMT"
+ ],
+ "Content-Length": [
+ "121"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskAccess1crptestps50102\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/f94f51e5-ac0d-4b4a-bbcc-7f364dd901b5?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvZjk0ZjUxZTUtYWMwZC00YjRhLWJiY2MtN2YzNjRkZDkwMWI1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399981"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "fb8ec5eb-53ff-4c85-9ddd-3521ab19ebe9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf2c7a2d-6dbd-40bf-991a-6e3ae7b64096"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164215Z:bf2c7a2d-6dbd-40bf-991a-6e3ae7b64096"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:14 GMT"
+ ],
+ "Content-Length": [
+ "582"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T12:41:44.9151234-04:00\",\r\n \"endTime\": \"2020-08-13T12:41:45.5875553-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskAccess1crptestps50102\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS50102/providers/Microsoft.Compute/diskAccesses/diskAccess1crptestps50102\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:44.9151234-04:00\"\r\n }\r\n }\r\n },\r\n \"name\": \"f94f51e5-ac0d-4b4a-bbcc-7f364dd901b5\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps50102/providers/Microsoft.Compute/diskAccesses/diskAccess1crptestps50102?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9kaXNrQWNjZXNzZXMvZGlza0FjY2VzczFjcnB0ZXN0cHM1MDEwMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "a44eb66e-9f87-4b07-a1c5-2ac99ece4564"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "921f9f06-e3c0-413c-a896-80e0ab8070e5"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164215Z:921f9f06-e3c0-413c-a896-80e0ab8070e5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:14 GMT"
+ ],
+ "Content-Length": [
+ "402"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskAccess1crptestps50102\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS50102/providers/Microsoft.Compute/diskAccesses/diskAccess1crptestps50102\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:44.9151234-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9kaXNrQWNjZXNzZXM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "df6fe890-9f28-4043-aa49-c3a3aec75630"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "c890d16a-611f-4238-a1d4-f3bf2c91a869",
+ "988bced6-5796-44c9-931f-eae80dbcef5b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "454bd8d8-0437-492a-b67c-87ed6e7eacca"
+ ],
+ "x-ms-correlation-request-id": [
+ "454bd8d8-0437-492a-b67c-87ed6e7eacca"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164215Z:454bd8d8-0437-492a-b67c-87ed6e7eacca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1715"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"diskaccessname\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/HAIDERPWSH/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T10:47:15.2552857-04:00\"\r\n }\r\n },\r\n {\r\n \"name\": \"diskname\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/HAIDERPWSH/providers/Microsoft.Compute/diskAccesses/diskname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T10:12:23.8545049-04:00\"\r\n }\r\n },\r\n {\r\n \"name\": \"diskaccess1crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:40:38.7898767-04:00\"\r\n }\r\n },\r\n {\r\n \"name\": \"diskAccess2crptestps5010\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:12.0405662-04:00\"\r\n }\r\n },\r\n {\r\n \"name\": \"diskAccess1crptestps50102\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS50102/providers/Microsoft.Compute/diskAccesses/diskAccess1crptestps50102\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T12:41:44.9151234-04:00\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS5010/providers/Microsoft.Compute/diskAccesses/diskaccess1crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL0NSUFRFU1RQUzUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzMWNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "603f8f35-2b58-4bcd-a27f-b056534b6247"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.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/northcentralus/DiskOperations/fd6642a8-c876-4ecb-9789-7491e1a23239?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/fd6642a8-c876-4ecb-9789-7491e1a23239?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "fd6642a8-c876-4ecb-9789-7491e1a23239"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "b25517b7-636c-4eb0-8937-9774cd43b0ef"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164216Z:b25517b7-636c-4eb0-8937-9774cd43b0ef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:15 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/fd6642a8-c876-4ecb-9789-7491e1a23239?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvZmQ2NjQyYTgtYzg3Ni00ZWNiLTk3ODktNzQ5MWUxYTIzMjM5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399979"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "f51fa189-d651-4cd7-90e1-e3e168411158"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "f19fac10-5068-4d3f-be2a-c9fd009304fd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164246Z:f19fac10-5068-4d3f-be2a-c9fd009304fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:45 GMT"
+ ],
+ "Content-Length": [
+ "184"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T12:42:16.0037287-04:00\",\r\n \"endTime\": \"2020-08-13T12:42:16.1443846-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fd6642a8-c876-4ecb-9789-7491e1a23239\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/fd6642a8-c876-4ecb-9789-7491e1a23239?monitor=true&api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvZmQ2NjQyYTgtYzg3Ni00ZWNiLTk3ODktNzQ5MWUxYTIzMjM5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399978"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "5744edf0-ea2d-44d5-8ea6-786e195490ce"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "4838ae11-3d41-4ffc-b5b4-90c09368ec3c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164246Z:4838ae11-3d41-4ffc-b5b4-90c09368ec3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5010/providers/Microsoft.Compute/diskAccesses/diskAccess2crptestps5010?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrQWNjZXNzMmNycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d4c6b86-1b0f-4ec6-bc2d-580107a3dde7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.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/northcentralus/DiskOperations/8ebed391-2756-42ef-87a5-496b9297c503?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/8ebed391-2756-42ef-87a5-496b9297c503?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "8ebed391-2756-42ef-87a5-496b9297c503"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1c7da08-07d1-41c8-8a61-2e5fe741e410"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164246Z:d1c7da08-07d1-41c8-8a61-2e5fe741e410"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:42:45 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/8ebed391-2756-42ef-87a5-496b9297c503?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvOGViZWQzOTEtMjc1Ni00MmVmLTg3YTUtNDk2YjkyOTdjNTAzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399976"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "1c55ca94-b39a-4fbe-84ce-326f7a352580"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "70b7d43b-8688-4182-9961-c3fd373f9f60"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164316Z:70b7d43b-8688-4182-9961-c3fd373f9f60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:43:16 GMT"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T12:42:46.7260695-04:00\",\r\n \"endTime\": \"2020-08-13T12:42:46.851094-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8ebed391-2756-42ef-87a5-496b9297c503\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/northcentralus/DiskOperations/8ebed391-2756-42ef-87a5-496b9297c503?monitor=true&api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvRGlza09wZXJhdGlvbnMvOGViZWQzOTEtMjc1Ni00MmVmLTg3YTUtNDk2YjkyOTdjNTAzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399975"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "260569e7-2e68-42ec-9401-319bf7e21d3c_132327921891861691"
+ ],
+ "x-ms-request-id": [
+ "4a09214f-4468-41d9-ab66-b75380360568"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee435d45-c8ff-4cc5-a0c8-82e8f64aa55c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T164316Z:ee435d45-c8ff-4cc5-a0c8-82e8f64aa55c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:43:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps5010?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUwMTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0f382c7-bb6f-4e68-b265-e3468b181031"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "5cd39664-fb33-4cdf-b226-e34cc9503522"
+ ],
+ "x-ms-correlation-request-id": [
+ "5cd39664-fb33-4cdf-b226-e34cc9503522"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164318Z:5cd39664-fb33-4cdf-b226-e34cc9503522"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:43:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd0xVNVBVbFJJUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUp1YjNKMGFHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "597ee28a-e63f-45cd-a576-1c8813198aa5"
+ ],
+ "x-ms-correlation-request-id": [
+ "597ee28a-e63f-45cd-a576-1c8813198aa5"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164333Z:597ee28a-e63f-45cd-a576-1c8813198aa5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:43:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd0xVNVBVbFJJUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUp1YjNKMGFHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "a09ce7e1-8827-4bd2-b1f6-56debe101004"
+ ],
+ "x-ms-correlation-request-id": [
+ "a09ce7e1-8827-4bd2-b1f6-56debe101004"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164348Z:a09ce7e1-8827-4bd2-b1f6-56debe101004"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:43:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd0xVNVBVbFJJUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUp1YjNKMGFHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "4d4258d7-761c-4a98-84ae-d8c434850eb9"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d4258d7-761c-4a98-84ae-d8c434850eb9"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164403Z:4d4258d7-761c-4a98-84ae-d8c434850eb9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:44:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd0xVNVBVbFJJUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUp1YjNKMGFHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "9b3fd3d5-e5ed-4c82-ba45-31f2af425766"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b3fd3d5-e5ed-4c82-ba45-31f2af425766"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200813T164403Z:9b3fd3d5-e5ed-4c82-ba45-31f2af425766"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:44:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps50102?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUwMTAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c6900e9-99ec-4a97-bb0e-5c1fd61ee5fc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "888914ee-6e58-4950-a759-8eddb5b5e390"
+ ],
+ "x-ms-correlation-request-id": [
+ "888914ee-6e58-4950-a759-8eddb5b5e390"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164404Z:888914ee-6e58-4950-a759-8eddb5b5e390"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:44:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "5c783de4-bb26-4b20-a799-d3dae1001549"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c783de4-bb26-4b20-a799-d3dae1001549"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164419Z:5c783de4-bb26-4b20-a799-d3dae1001549"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:44:18 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "b357ffa3-4bf9-4ee3-92ff-d0b91fdf9f9d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b357ffa3-4bf9-4ee3-92ff-d0b91fdf9f9d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164434Z:b357ffa3-4bf9-4ee3-92ff-d0b91fdf9f9d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:44:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "ae7c65c0-4fbe-4231-8d33-58387f8b9088"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae7c65c0-4fbe-4231-8d33-58387f8b9088"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164449Z:ae7c65c0-4fbe-4231-8d33-58387f8b9088"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:44:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "7411dab3-07f3-4a21-a7b1-eff7aca7eb9b"
+ ],
+ "x-ms-correlation-request-id": [
+ "7411dab3-07f3-4a21-a7b1-eff7aca7eb9b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164504Z:7411dab3-07f3-4a21-a7b1-eff7aca7eb9b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:45:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "b0e4e9f7-810e-430d-96a3-9404bd28c623"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0e4e9f7-810e-430d-96a3-9404bd28c623"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164519Z:b0e4e9f7-810e-430d-96a3-9404bd28c623"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:45:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "51c79f86-14cd-46cd-a586-1ba9b32d498f"
+ ],
+ "x-ms-correlation-request-id": [
+ "51c79f86-14cd-46cd-a586-1ba9b32d498f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164534Z:51c79f86-14cd-46cd-a586-1ba9b32d498f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:45:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "909bde18-1e07-491d-b30d-d4f5bfb6955c"
+ ],
+ "x-ms-correlation-request-id": [
+ "909bde18-1e07-491d-b30d-d4f5bfb6955c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164549Z:909bde18-1e07-491d-b30d-d4f5bfb6955c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:45:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "1cd2ea7d-4bef-4a48-a59a-c2ffaf9659e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cd2ea7d-4bef-4a48-a59a-c2ffaf9659e8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164604Z:1cd2ea7d-4bef-4a48-a59a-c2ffaf9659e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:46:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "9f7541a1-f403-4a0c-b2b0-d5f718bd9c0c"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f7541a1-f403-4a0c-b2b0-d5f718bd9c0c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164619Z:9f7541a1-f403-4a0c-b2b0-d5f718bd9c0c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:46:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "b1e4cc65-c1e4-4401-86d8-e571659d4bf7"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1e4cc65-c1e4-4401-86d8-e571659d4bf7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164634Z:b1e4cc65-c1e4-4401-86d8-e571659d4bf7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:46:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "83b3e9f1-d422-4649-8cbf-b6ae69f31aec"
+ ],
+ "x-ms-correlation-request-id": [
+ "83b3e9f1-d422-4649-8cbf-b6ae69f31aec"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164649Z:83b3e9f1-d422-4649-8cbf-b6ae69f31aec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:46:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MDEwMi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTURFd01pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "8ca8892e-bb95-406a-becb-e96d8ad413db"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ca8892e-bb95-406a-becb-e96d8ad413db"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200813T164649Z:8ca8892e-bb95-406a-becb-e96d8ad413db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 16:46:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-DiskAccessObject": [
+ "crptestps5010"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
+ }
+}
\ No newline at end of file
diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskConfigDiskAccessNetworkAccess.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskConfigDiskAccessNetworkAccess.json
new file mode 100644
index 000000000000..bfac10ead9aa
--- /dev/null
+++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskConfigDiskAccessNetworkAccess.json
@@ -0,0 +1,1841 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4851eb60-9764-42b2-b647-817cb5bec2f4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "30d3bc0b-456f-4761-9b78-6881178cd61a"
+ ],
+ "x-ms-correlation-request-id": [
+ "30d3bc0b-456f-4761-9b78-6881178cd61a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T152931Z:30d3bc0b-456f-4761-9b78-6881178cd61a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:29:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "34246"
+ ]
+ },
+ "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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\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 \"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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps3235?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8416fb42-e30d-4d48-bcc0-ae94be3fd09b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "fb5806b3-d590-4899-abca-f9ddd99b6738"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb5806b3-d590-4899-abca-f9ddd99b6738"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T152932Z:fb5806b3-d590-4899-abca-f9ddd99b6738"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:29:32 GMT"
+ ],
+ "Content-Length": [
+ "179"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235\",\r\n \"name\": \"crptestps3235\",\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/crptestps3235/providers/Microsoft.Compute/diskAccesses/diskaccessname?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzbmFtZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f77dd877-97af-4136-a61e-225a9c142583"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/940c12b6-0168-483f-9593-79f46e74bb1b?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/940c12b6-0168-483f-9593-79f46e74bb1b?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "940c12b6-0168-483f-9593-79f46e74bb1b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "efa5cd82-9c21-47cd-ad1e-1bd5bc1c18c8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T152934Z:efa5cd82-9c21-47cd-ad1e-1bd5bc1c18c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:29:34 GMT"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/940c12b6-0168-483f-9593-79f46e74bb1b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zLzk0MGMxMmI2LTAxNjgtNDgzZi05NTkzLTc5ZjQ2ZTc0YmIxYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399970"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "fc24300a-8778-4bee-a346-1d1e4c95f416"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "c470b14f-807b-4db6-bb24-95ef5690d34b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T153004Z:c470b14f-807b-4db6-bb24-95ef5690d34b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:04 GMT"
+ ],
+ "Content-Length": [
+ "550"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T11:29:34.2188662-04:00\",\r\n \"endTime\": \"2020-08-13T11:29:34.828226-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskaccessname\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T11:29:34.2188662-04:00\"\r\n }\r\n }\r\n },\r\n \"name\": \"940c12b6-0168-483f-9593-79f46e74bb1b\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/diskAccesses/diskaccessname?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzbmFtZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "7d61fa3e-9375-4880-8c5b-6dd6ba8f69b1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "a69cb504-6b82-41f1-97c7-a1a982e2d79c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200813T153004Z:a69cb504-6b82-41f1-97c7-a1a982e2d79c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:04 GMT"
+ ],
+ "Content-Length": [
+ "371"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccessname\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-13T11:29:34.2188662-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cae029a0-b561-41a4-8579-55174e6079cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "406"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/8244c7f7-93cd-44b6-8533-e34f50a31dd9?monitor=true&api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/8244c7f7-93cd-44b6-8533-e34f50a31dd9?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7994"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "8244c7f7-93cd-44b6-8533-e34f50a31dd9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5fc0000-f460-409b-9667-85d15b13f9f0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153007Z:a5fc0000-f460-409b-9667-85d15b13f9f0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:06 GMT"
+ ],
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"disk0crptestps3235\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f27d9927-87b0-4411-80eb-ab2da6fdc9d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "285"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/23fbbe7b-0dbc-4a81-aa5d-e19d92c832ed?monitor=true&api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/23fbbe7b-0dbc-4a81-aa5d-e19d92c832ed?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7993"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "23fbbe7b-0dbc-4a81-aa5d-e19d92c832ed"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "441e65f0-58f8-4f3e-8661-650eeb633e4d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153042Z:441e65f0-58f8-4f3e-8661-650eeb633e4d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:42 GMT"
+ ],
+ "Content-Length": [
+ "384"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"disk0crptestps3235\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/8244c7f7-93cd-44b6-8533-e34f50a31dd9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zLzgyNDRjN2Y3LTkzY2QtNDRiNi04NTMzLWUzNGY1MGEzMWRkOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399969"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "bb32b445-fec5-4ced-9466-13a9f8ee021e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4925cf1-6b49-4ad6-8501-3bf69eb05393"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153009Z:d4925cf1-6b49-4ad6-8501-3bf69eb05393"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:08 GMT"
+ ],
+ "Content-Length": [
+ "1245"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T11:30:07.0630724-04:00\",\r\n \"endTime\": \"2020-08-13T11:30:07.2349626-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk0crptestps3235\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskIOPSReadWrite\": 2000,\r\n \"diskMBpsReadWrite\": 500,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-08-13T11:30:07.0630724-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"ac04335f-27ec-407e-b579-b80b41cb05f5\",\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n }\r\n },\r\n \"name\": \"8244c7f7-93cd-44b6-8533-e34f50a31dd9\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39974"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "46ea2389-28bd-4e2b-b254-ca44fbf84c4e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "e262008c-1e03-4f24-8b34-5e5979a20a85"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153009Z:e262008c-1e03-4f24-8b34-5e5979a20a85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:08 GMT"
+ ],
+ "Content-Length": [
+ "1020"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"disk0crptestps3235\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskIOPSReadWrite\": 2000,\r\n \"diskMBpsReadWrite\": 500,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-08-13T11:30:07.0630724-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"ac04335f-27ec-407e-b579-b80b41cb05f5\",\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84fafcf2-65b2-4ab6-8d8e-545508a7afcd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39973"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "b22d34e3-8d19-4bc9-887d-eb7086ec99ef"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d14ee0d-f64e-4c33-8e49-8efae5204385"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153009Z:4d14ee0d-f64e-4c33-8e49-8efae5204385"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:09 GMT"
+ ],
+ "Content-Length": [
+ "1020"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"disk0crptestps3235\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskIOPSReadWrite\": 2000,\r\n \"diskMBpsReadWrite\": 500,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-08-13T11:30:07.0630724-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"ac04335f-27ec-407e-b579-b80b41cb05f5\",\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3235/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39966"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "1ac8a279-42bd-47fb-9c43-bc1caa553b79"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f8f3f6b-9c4a-4618-a15c-bce633aa4193"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153044Z:7f8f3f6b-9c4a-4618-a15c-bce633aa4193"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:44 GMT"
+ ],
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"disk0crptestps3235\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskIOPSReadWrite\": 2000,\r\n \"diskMBpsReadWrite\": 500,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-08-13T11:30:42.3872631-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"8851618b-4271-4ad2-bfc4-3a7498621f06\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a698aff9-0fe0-4e0d-90f8-6a9080d9b723"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39965"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "1c065750-0fe9-46ca-bb62-13ce3d6efa96"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "9051af67-6f5d-40eb-93cf-12cff131e381"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153044Z:9051af67-6f5d-40eb-93cf-12cff131e381"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:44 GMT"
+ ],
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"disk0crptestps3235\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskIOPSReadWrite\": 2000,\r\n \"diskMBpsReadWrite\": 500,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-08-13T11:30:42.3872631-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"8851618b-4271-4ad2-bfc4-3a7498621f06\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2swY3JwdGVzdHBzMzIzNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c0e0ab9-ef8b-4741-a5c6-dca2aa921007"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.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/DiskOperations/fcf06a4b-5ba8-436f-9101-343c86bef9c5?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/fcf06a4b-5ba8-436f-9101-343c86bef9c5?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "fcf06a4b-5ba8-436f-9101-343c86bef9c5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fff3aa5-e992-49e4-9508-89330708c591"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153010Z:0fff3aa5-e992-49e4-9508-89330708c591"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/fcf06a4b-5ba8-436f-9101-343c86bef9c5?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zL2ZjZjA2YTRiLTViYTgtNDM2Zi05MTAxLTM0M2M4NmJlZjljNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399966"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "430bc1b5-fac4-4ce1-8e3a-a2fc751d4b33"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5e24947-72fa-49af-8815-f6f097cf9438"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153040Z:e5e24947-72fa-49af-8815-f6f097cf9438"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:39 GMT"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T11:30:10.1724918-04:00\",\r\n \"endTime\": \"2020-08-13T11:30:10.375641-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fcf06a4b-5ba8-436f-9101-343c86bef9c5\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/fcf06a4b-5ba8-436f-9101-343c86bef9c5?monitor=true&api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zL2ZjZjA2YTRiLTViYTgtNDM2Zi05MTAxLTM0M2M4NmJlZjljNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399965"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "a12979bd-50bc-4011-a256-5a3285223463"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5141418-ef76-4e7e-86af-e23e6a4787aa"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153040Z:f5141418-ef76-4e7e-86af-e23e6a4787aa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/23fbbe7b-0dbc-4a81-aa5d-e19d92c832ed?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zLzIzZmJiZTdiLTBkYmMtNGE4MS1hYTVkLWUxOWQ5MmM4MzJlZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399964"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "6f5e9446-6539-4f12-845e-982a6cf27bd7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "ded9e795-ebf4-4b98-b986-193673ddca1a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153044Z:ded9e795-ebf4-4b98-b986-193673ddca1a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:44 GMT"
+ ],
+ "Content-Length": [
+ "1080"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-13T11:30:42.3872631-04:00\",\r\n \"endTime\": \"2020-08-13T11:30:42.5435148-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk0crptestps3235\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3235/providers/Microsoft.Compute/disks/disk0crptestps3235\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 35183298347520\r\n },\r\n \"diskIOPSReadWrite\": 2000,\r\n \"diskMBpsReadWrite\": 500,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-08-13T11:30:42.3872631-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"8851618b-4271-4ad2-bfc4-3a7498621f06\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n }\r\n },\r\n \"name\": \"23fbbe7b-0dbc-4a81-aa5d-e19d92c832ed\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps3235?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "58c2a7fe-f741-4992-ab33-cc6ab83b77d0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "47b1b023-887f-4816-8aa0-34f46c376730"
+ ],
+ "x-ms-correlation-request-id": [
+ "47b1b023-887f-4816-8aa0-34f46c376730"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153046Z:47b1b023-887f-4816-8aa0-34f46c376730"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:30:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "b2ed8213-bfb6-4514-9da8-16d1b9a716d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2ed8213-bfb6-4514-9da8-16d1b9a716d2"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153101Z:b2ed8213-bfb6-4514-9da8-16d1b9a716d2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:31:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "c790dbb3-def9-4e09-a1c8-0bab856c712f"
+ ],
+ "x-ms-correlation-request-id": [
+ "c790dbb3-def9-4e09-a1c8-0bab856c712f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153116Z:c790dbb3-def9-4e09-a1c8-0bab856c712f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:31:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "06d1b8c9-7f16-48a6-87b0-faaf89ea43b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "06d1b8c9-7f16-48a6-87b0-faaf89ea43b7"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153131Z:06d1b8c9-7f16-48a6-87b0-faaf89ea43b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:31:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "fbee41ff-844c-4364-b06c-946f874f62f5"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbee41ff-844c-4364-b06c-946f874f62f5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153146Z:fbee41ff-844c-4364-b06c-946f874f62f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:31:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "93a09685-666d-42b3-a900-500f9cc1555c"
+ ],
+ "x-ms-correlation-request-id": [
+ "93a09685-666d-42b3-a900-500f9cc1555c"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153201Z:93a09685-666d-42b3-a900-500f9cc1555c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:32:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "8ae210b4-c604-4e72-a7bc-c455e2fa7a1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ae210b4-c604-4e72-a7bc-c455e2fa7a1d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153216Z:8ae210b4-c604-4e72-a7bc-c455e2fa7a1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:32:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "e4c97b0d-5d80-4ea8-8e85-9d7317cf0996"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4c97b0d-5d80-4ea8-8e85-9d7317cf0996"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153231Z:e4c97b0d-5d80-4ea8-8e85-9d7317cf0996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:32:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "446f3d4c-cfaf-40d3-bbe5-5e458955ed23"
+ ],
+ "x-ms-correlation-request-id": [
+ "446f3d4c-cfaf-40d3-bbe5-5e458955ed23"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153247Z:446f3d4c-cfaf-40d3-bbe5-5e458955ed23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:32:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "66f8d650-2bd9-49d3-80ae-e0fa246d2ffd"
+ ],
+ "x-ms-correlation-request-id": [
+ "66f8d650-2bd9-49d3-80ae-e0fa246d2ffd"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153302Z:66f8d650-2bd9-49d3-80ae-e0fa246d2ffd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:33:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "b04373af-16a1-4bae-94dd-9007048aaf53"
+ ],
+ "x-ms-correlation-request-id": [
+ "b04373af-16a1-4bae-94dd-9007048aaf53"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153317Z:b04373af-16a1-4bae-94dd-9007048aaf53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:33:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "b1fc83ae-a36e-4747-8e63-479caebda076"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1fc83ae-a36e-4747-8e63-479caebda076"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153332Z:b1fc83ae-a36e-4747-8e63-479caebda076"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:33:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjM1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpNMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "9a46d7d5-bf26-46b7-9eec-6be812bc019a"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a46d7d5-bf26-46b7-9eec-6be812bc019a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHCENTRALUS:20200813T153332Z:9a46d7d5-bf26-46b7-9eec-6be812bc019a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 13 Aug 2020 15:33:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-DiskConfigDiskAccessNetworkAccess": [
+ "crptestps3235"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
+ }
+}
\ No newline at end of file
diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskEncryptionSetConfigEncryptionType.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskEncryptionSetConfigEncryptionType.json
new file mode 100644
index 000000000000..7479539c4e23
--- /dev/null
+++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestDiskEncryptionSetConfigEncryptionType.json
@@ -0,0 +1,884 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/adamGroupDES7?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2FkYW1Hcm91cERFUzc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84af558b-8c56-46ee-9946-64d233c3f5c8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "8c84b69d-0400-449f-9077-f6626e27dbed"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c84b69d-0400-449f-9077-f6626e27dbed"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143149Z:8c84b69d-0400-449f-9077-f6626e27dbed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:31:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "186"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7\",\r\n \"name\": \"adamGroupDES7\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2FkYW1Hcm91cERFUzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tFbmNyeXB0aW9uU2V0cy9lbmNhZGFtR3JvdXBERVM3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionType\": \"EncryptionAtRestWithPlatformAndCustomerKeys\",\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv15adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv15adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/74332f302a0e48999415f6f9bbf7430c\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6491ba36-ae88-4747-8e3d-9b6e123a870c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "529"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/af7b71b9-80c5-4f92-8af4-2aa4cd28e387?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/af7b71b9-80c5-4f92-8af4-2aa4cd28e387?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;281"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "af7b71b9-80c5-4f92-8af4-2aa4cd28e387"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "dafe7867-4586-4584-9e17-2b608b79eed0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143154Z:dafe7867-4586-4584-9e17-2b608b79eed0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:31:54 GMT"
+ ],
+ "Content-Length": [
+ "567"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv15adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv15adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/74332f302a0e48999415f6f9bbf7430c\"\r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithPlatformAndCustomerKeys\",\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/af7b71b9-80c5-4f92-8af4-2aa4cd28e387?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9EaXNrT3BlcmF0aW9ucy9hZjdiNzFiOS04MGM1LTRmOTItOGFmNC0yYWE0Y2QyOGUzODc/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399956"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "1c8583e2-8209-4b0c-b1b4-1786b8aab9b6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0be9968-5c35-418a-927f-fc9a94af9868"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143224Z:b0be9968-5c35-418a-927f-fc9a94af9868"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:32:23 GMT"
+ ],
+ "Content-Length": [
+ "1009"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-25T10:31:53.9065306-04:00\",\r\n \"endTime\": \"2020-08-25T10:31:53.9534157-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"encadamGroupDES7\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7\",\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"centraluseuap\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c8f9efbc-f166-4976-863d-117edda506b8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv15adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv15adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/74332f302a0e48999415f6f9bbf7430c\"\r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithPlatformAndCustomerKeys\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n },\r\n \"name\": \"af7b71b9-80c5-4f92-8af4-2aa4cd28e387\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2FkYW1Hcm91cERFUzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tFbmNyeXB0aW9uU2V0cy9lbmNhZGFtR3JvdXBERVM3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39938"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "c8384456-42f2-4e55-a8b5-10ce2b5bc597"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "addf3dd1-fbc4-4acc-8ee8-454e7495b728"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143224Z:addf3dd1-fbc4-4acc-8ee8-454e7495b728"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:32:23 GMT"
+ ],
+ "Content-Length": [
+ "909"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"encadamGroupDES7\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7\",\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"centraluseuap\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c8f9efbc-f166-4976-863d-117edda506b8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv15adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv15adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/74332f302a0e48999415f6f9bbf7430c\"\r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithPlatformAndCustomerKeys\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7Default?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2FkYW1Hcm91cERFUzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tFbmNyeXB0aW9uU2V0cy9lbmNhZGFtR3JvdXBERVM3RGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv16adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv16adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/84412eaa63f344bf8a1b15612f2b36cb\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0f4a060-46a2-443b-8b85-5573eda08ca3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "459"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/f8eeb4ee-6464-4709-bb56-343069f3c5ce?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/f8eeb4ee-6464-4709-bb56-343069f3c5ce?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/HighCostDiskEncryptionSet3Min;98,Microsoft.Compute/HighCostDiskEncryptionSet30Min;280"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "f8eeb4ee-6464-4709-bb56-343069f3c5ce"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2150a1e-4157-4125-be75-6560a089e1b2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143225Z:e2150a1e-4157-4125-be75-6560a089e1b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:32:25 GMT"
+ ],
+ "Content-Length": [
+ "497"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv16adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv16adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/84412eaa63f344bf8a1b15612f2b36cb\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/f8eeb4ee-6464-4709-bb56-343069f3c5ce?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9EaXNrT3BlcmF0aW9ucy9mOGVlYjRlZS02NDY0LTQ3MDktYmI1Ni0zNDMwNjlmM2M1Y2U/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399954"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "f484bc24-0f87-416c-b945-14a349c3db07"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc2c2017-ce2b-487d-8bb3-460d379cc962"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143256Z:cc2c2017-ce2b-487d-8bb3-460d379cc962"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:32:55 GMT"
+ ],
+ "Content-Length": [
+ "1011"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-25T10:32:25.8349051-04:00\",\r\n \"endTime\": \"2020-08-25T10:32:25.8818004-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"encadamGroupDES7Default\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7Default\",\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"centraluseuap\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"adec13e4-e916-4444-910b-e1dbbfa8490a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv16adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv16adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/84412eaa63f344bf8a1b15612f2b36cb\"\r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n },\r\n \"name\": \"f8eeb4ee-6464-4709-bb56-343069f3c5ce\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7Default?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2FkYW1Hcm91cERFUzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tFbmNyeXB0aW9uU2V0cy9lbmNhZGFtR3JvdXBERVM3RGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39935"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "9feef154-c783-43a6-a7af-f123d49782cc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "41be4467-b2e3-40cc-b777-cb80f85c9de8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143256Z:41be4467-b2e3-40cc-b777-cb80f85c9de8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:32:55 GMT"
+ ],
+ "Content-Length": [
+ "911"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"encadamGroupDES7Default\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7Default\",\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"centraluseuap\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"adec13e4-e916-4444-910b-e1dbbfa8490a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.KeyVault/vaults/kv16adamGroupDES7\"\r\n },\r\n \"keyUrl\": \"https://kv16adamgroupdes7.vault.azure.net/keys/kek15adamGroupDES7/84412eaa63f344bf8a1b15612f2b36cb\"\r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2FkYW1Hcm91cERFUzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tFbmNyeXB0aW9uU2V0cy9lbmNhZGFtR3JvdXBERVM3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f25935d8-2626-4162-8bd5-a2f21a416eee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.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/centraluseuap/DiskOperations/9c110be1-cb5f-490c-82a5-1e9416e4e44a?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9c110be1-cb5f-490c-82a5-1e9416e4e44a?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/HighCostDiskEncryptionSet3Min;97,Microsoft.Compute/HighCostDiskEncryptionSet30Min;279"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "9c110be1-cb5f-490c-82a5-1e9416e4e44a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "df8bdd06-5071-4fb7-b9bd-c954515f2ee3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143256Z:df8bdd06-5071-4fb7-b9bd-c954515f2ee3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:32:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9c110be1-cb5f-490c-82a5-1e9416e4e44a?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9EaXNrT3BlcmF0aW9ucy85YzExMGJlMS1jYjVmLTQ5MGMtODJhNS0xZTk0MTZlNGU0NGE/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399952"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "94a87899-76ac-4cc1-9e78-134a6605bbd1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "e262dd81-5f65-46ec-8868-1d886b5d169f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143326Z:e262dd81-5f65-46ec-8868-1d886b5d169f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:33:25 GMT"
+ ],
+ "Content-Length": [
+ "184"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-25T10:32:56.5117429-04:00\",\r\n \"endTime\": \"2020-08-25T10:32:56.5742717-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9c110be1-cb5f-490c-82a5-1e9416e4e44a\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9c110be1-cb5f-490c-82a5-1e9416e4e44a?monitor=true&api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9EaXNrT3BlcmF0aW9ucy85YzExMGJlMS1jYjVmLTQ5MGMtODJhNS0xZTk0MTZlNGU0NGE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399951"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "b36b100f-b584-4e39-a0a4-53a9d3e743e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "6edf466f-69b1-4a9e-bdcc-bd05e6a28cf9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143326Z:6edf466f-69b1-4a9e-bdcc-bd05e6a28cf9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:33:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/adamGroupDES7/providers/Microsoft.Compute/diskEncryptionSets/encadamGroupDES7Default?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2FkYW1Hcm91cERFUzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tFbmNyeXB0aW9uU2V0cy9lbmNhZGFtR3JvdXBERVM3RGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6be0fe75-f134-4a52-846d-a9232e1e562c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.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/centraluseuap/DiskOperations/9c4761ab-ff2d-426b-9f04-0d5ee80d5258?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9c4761ab-ff2d-426b-9f04-0d5ee80d5258?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/HighCostDiskEncryptionSet3Min;96,Microsoft.Compute/HighCostDiskEncryptionSet30Min;278"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "9c4761ab-ff2d-426b-9f04-0d5ee80d5258"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "5289c5d5-9aa0-430f-bfbf-c40ba8200b03"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143327Z:5289c5d5-9aa0-430f-bfbf-c40ba8200b03"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:33:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9c4761ab-ff2d-426b-9f04-0d5ee80d5258?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9EaXNrT3BlcmF0aW9ucy85YzQ3NjFhYi1mZjJkLTQyNmItOWYwNC0wZDVlZTgwZDUyNTg/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399949"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "4a35297a-1cd4-4e52-a299-adc37ead14ce"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fadd8f3-1aad-4767-962c-5be3f3bbb483"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143357Z:9fadd8f3-1aad-4767-962c-5be3f3bbb483"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:33:56 GMT"
+ ],
+ "Content-Length": [
+ "184"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-25T10:33:27.0549702-04:00\",\r\n \"endTime\": \"2020-08-25T10:33:27.1018143-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9c4761ab-ff2d-426b-9f04-0d5ee80d5258\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9c4761ab-ff2d-426b-9f04-0d5ee80d5258?monitor=true&api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9EaXNrT3BlcmF0aW9ucy85YzQ3NjFhYi1mZjJkLTQyNmItOWYwNC0wZDVlZTgwZDUyNTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399948"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "c07e6767-d873-44ad-99cf-154e1889a7be_132398319464986428"
+ ],
+ "x-ms-request-id": [
+ "7511e8f5-cc72-43fb-85f5-30a0e173ffc1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "caa7ec9c-ef1a-4e91-b0ae-e87f5b8b72ed"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200825T143357Z:caa7ec9c-ef1a-4e91-b0ae-e87f5b8b72ed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 25 Aug 2020 14:33:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
+ }
+}
diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestSnapshotConfigDiskAccessNetworkPolicy.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestSnapshotConfigDiskAccessNetworkPolicy.json
new file mode 100644
index 000000000000..c76d8b424b4a
--- /dev/null
+++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.DiskRPTests/TestSnapshotConfigDiskAccessNetworkPolicy.json
@@ -0,0 +1,1561 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7ef311c-c937-4ef2-97e8-d9f729b8d15b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "a04e2218-0755-4503-9647-549fb09e72de"
+ ],
+ "x-ms-correlation-request-id": [
+ "a04e2218-0755-4503-9647-549fb09e72de"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172130Z:a04e2218-0755-4503-9647-549fb09e72de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:21:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "34246"
+ ]
+ },
+ "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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\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 \"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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps8392?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgzOTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b02b3ff5-d7f7-41ad-8a62-223560886e08"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "54ad0330-f785-4da8-8881-7d2c95299c5b"
+ ],
+ "x-ms-correlation-request-id": [
+ "54ad0330-f785-4da8-8881-7d2c95299c5b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172131Z:54ad0330-f785-4da8-8881-7d2c95299c5b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:21:31 GMT"
+ ],
+ "Content-Length": [
+ "179"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392\",\r\n \"name\": \"crptestps8392\",\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/crptestps8392?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgzOTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86c76406-5a61-4bf9-ac18-568bedd1432b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "023602fd-e267-4842-b52f-a872df7406d9"
+ ],
+ "x-ms-correlation-request-id": [
+ "023602fd-e267-4842-b52f-a872df7406d9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172132Z:023602fd-e267-4842-b52f-a872df7406d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:21:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "179"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392\",\r\n \"name\": \"crptestps8392\",\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/crptestps8392/providers/Microsoft.Compute/diskAccesses/diskaccessname?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzbmFtZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "652f805c-8f0c-4db4-811b-fcbd75295709"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/5ba29439-7d4d-49ad-a6e7-74c8a32f7c05?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/5ba29439-7d4d-49ad-a6e7-74c8a32f7c05?api-version=2020-05-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "5ba29439-7d4d-49ad-a6e7-74c8a32f7c05"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc93b0df-994e-4e83-af7d-ff0c23ee7789"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172135Z:cc93b0df-994e-4e83-af7d-ff0c23ee7789"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:21:34 GMT"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/5ba29439-7d4d-49ad-a6e7-74c8a32f7c05?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zLzViYTI5NDM5LTdkNGQtNDlhZC1hNmU3LTc0YzhhMzJmN2MwNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399984"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "acbcfbc4-e2c5-4bd4-a099-1f1acf388cf6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a9e6b83-4f39-40f5-afde-1497f8bda26e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172205Z:3a9e6b83-4f39-40f5-afde-1497f8bda26e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:05 GMT"
+ ],
+ "Content-Length": [
+ "551"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-17T13:21:34.7797799-04:00\",\r\n \"endTime\": \"2020-08-17T13:21:35.2798287-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskaccessname\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-17T13:21:34.7797799-04:00\"\r\n }\r\n }\r\n },\r\n \"name\": \"5ba29439-7d4d-49ad-a6e7-74c8a32f7c05\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/diskAccesses/diskaccessname?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tBY2Nlc3Nlcy9kaXNrYWNjZXNzbmFtZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "fd4108b9-a122-4fb8-868c-81750719cfef"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "adb98056-63cd-4371-9a55-437254f59972"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172205Z:adb98056-63cd-4371-9a55-437254f59972"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:05 GMT"
+ ],
+ "Content-Length": [
+ "371"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"diskaccessname\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2020-08-17T13:21:34.7797799-04:00\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots/snapshotcrptestps8392?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3NuYXBzaG90cy9zbmFwc2hvdGNycHRlc3RwczgzOTI/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"encryptionSettingsCollection\": {\r\n \"enabled\": false\r\n },\r\n \"incremental\": false,\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb02cb30-67c5-4517-8b0b-d94465dd7acc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "514"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/a6f752da-c827-44f5-982a-dc0c7bb1d4cf?monitor=true&api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/a6f752da-c827-44f5-982a-dc0c7bb1d4cf?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "a6f752da-c827-44f5-982a-dc0c7bb1d4cf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "31aba419-58fa-41c6-a649-5a02a90f8ab1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172208Z:31aba419-58fa-41c6-a649-5a02a90f8ab1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:07 GMT"
+ ],
+ "Content-Length": [
+ "624"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"encryptionSettingsCollection\": {\r\n \"enabled\": false\r\n },\r\n \"incremental\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/a6f752da-c827-44f5-982a-dc0c7bb1d4cf?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zL2E2Zjc1MmRhLWM4MjctNDRmNS05ODJhLWRjMGM3YmIxZDRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399983"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "692cdebf-4947-4f90-b9ef-4a336009e5c5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "272d271a-1001-43b8-a891-cc6883c913ef"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172210Z:272d271a-1001-43b8-a891-cc6883c913ef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:09 GMT"
+ ],
+ "Content-Length": [
+ "1411"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-17T13:22:08.3276724-04:00\",\r\n \"endTime\": \"2020-08-17T13:22:08.5933357-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshotcrptestps8392\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots/snapshotcrptestps8392\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"encryptionSettingsCollection\": {\r\n \"enabled\": false,\r\n \"encryptionSettings\": [],\r\n \"encryptionSettingsVersion\": \"1.0\"\r\n },\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-08-17T13:22:08.3276724-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"a3a63353-7945-43e5-a1be-8ebac06c893e\",\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n }\r\n },\r\n \"name\": \"a6f752da-c827-44f5-982a-dc0c7bb1d4cf\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots/snapshotcrptestps8392?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3NuYXBzaG90cy9zbmFwc2hvdGNycHRlc3RwczgzOTI/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39988"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "7c75aed7-3a5a-4645-bd1b-d7d61d817161"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b6f5b07-1429-494e-bb21-6e9eec6895b3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172210Z:0b6f5b07-1429-494e-bb21-6e9eec6895b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:09 GMT"
+ ],
+ "Content-Length": [
+ "1186"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"snapshotcrptestps8392\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots/snapshotcrptestps8392\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"encryptionSettingsCollection\": {\r\n \"enabled\": false,\r\n \"encryptionSettings\": [],\r\n \"encryptionSettingsVersion\": \"1.0\"\r\n },\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-08-17T13:22:08.3276724-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"a3a63353-7945-43e5-a1be-8ebac06c893e\",\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3NuYXBzaG90cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e714dbe-4060-4eb6-9091-01ddd319dd80"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/HighCostGet3Min;239,Microsoft.Compute/HighCostGet30Min;1918"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "70676de2-b0cd-4a0e-8b5f-e3619f678d2a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "0dcdfbc5-42cf-4505-953a-5d9d2d0326d0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172211Z:0dcdfbc5-42cf-4505-953a-5d9d2d0326d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:11 GMT"
+ ],
+ "Content-Length": [
+ "1351"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"snapshotcrptestps8392\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots/snapshotcrptestps8392\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"encryptionSettingsCollection\": {\r\n \"enabled\": false,\r\n \"encryptionSettings\": [],\r\n \"encryptionSettingsVersion\": \"1.0\"\r\n },\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-08-17T13:22:08.3276724-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"a3a63353-7945-43e5-a1be-8ebac06c893e\",\r\n \"diskAccessId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS8392/providers/Microsoft.Compute/diskAccesses/diskaccessname\",\r\n \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8392/providers/Microsoft.Compute/snapshots/snapshotcrptestps8392?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3NuYXBzaG90cy9zbmFwc2hvdGNycHRlc3RwczgzOTI/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6070faca-6bf3-4f5a-9c18-3c9da0967630"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.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/DiskOperations/1f184b9f-d10c-4092-8cc2-fb90f589bd31?monitor=true&api-version=2020-05-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/1f184b9f-d10c-4092-8cc2-fb90f589bd31?api-version=2020-05-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7998"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "1f184b9f-d10c-4092-8cc2-fb90f589bd31"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "2134c6d0-fc7f-4150-9d92-dc115c52a8a3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172212Z:2134c6d0-fc7f-4150-9d92-dc115c52a8a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:11 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/1f184b9f-d10c-4092-8cc2-fb90f589bd31?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zLzFmMTg0YjlmLWQxMGMtNDA5Mi04Y2MyLWZiOTBmNTg5YmQzMT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399980"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "adb10c11-f118-4543-ac61-ac772afce1f9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e13efb7-feba-45d0-939b-d40ef0f1cabb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172242Z:2e13efb7-feba-45d0-939b-d40ef0f1cabb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:41 GMT"
+ ],
+ "Content-Length": [
+ "184"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-17T13:22:12.1089383-04:00\",\r\n \"endTime\": \"2020-08-17T13:22:12.3277099-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f184b9f-d10c-4092-8cc2-fb90f589bd31\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/DiskOperations/1f184b9f-d10c-4092-8cc2-fb90f589bd31?monitor=true&api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zLzFmMTg0YjlmLWQxMGMtNDA5Mi04Y2MyLWZiOTBmNTg5YmQzMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399979"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "d3255131-e7b3-4a83-8960-a836a057d1f8_132340351346689225"
+ ],
+ "x-ms-request-id": [
+ "0c16f055-143c-4996-891e-5fa232648467"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec11cfa7-68ce-465c-a17b-60cd7750a9fb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200817T172242Z:ec11cfa7-68ce-465c-a17b-60cd7750a9fb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps8392?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgzOTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "812fca8b-ef40-47cf-bb82-ed53e7651594"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "b4086ebc-d14e-42ca-b5b9-8a9a17dbfff3"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4086ebc-d14e-42ca-b5b9-8a9a17dbfff3"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172243Z:b4086ebc-d14e-42ca-b5b9-8a9a17dbfff3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "4c791fdb-fd77-4281-a8a4-edd0ff995e21"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c791fdb-fd77-4281-a8a4-edd0ff995e21"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172259Z:4c791fdb-fd77-4281-a8a4-edd0ff995e21"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:22:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "3308d3fa-0c29-4aac-895c-0feac5ed7ba7"
+ ],
+ "x-ms-correlation-request-id": [
+ "3308d3fa-0c29-4aac-895c-0feac5ed7ba7"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172314Z:3308d3fa-0c29-4aac-895c-0feac5ed7ba7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:23:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "f9904214-9495-4c35-9b2d-1ff0aeb24d62"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9904214-9495-4c35-9b2d-1ff0aeb24d62"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172329Z:f9904214-9495-4c35-9b2d-1ff0aeb24d62"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:23:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "5e039f2e-be0b-4dff-aed3-f58bb85a5667"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e039f2e-be0b-4dff-aed3-f58bb85a5667"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172344Z:5e039f2e-be0b-4dff-aed3-f58bb85a5667"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:23:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "cf17d52a-c5ec-41fe-bde2-125905964cca"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf17d52a-c5ec-41fe-bde2-125905964cca"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172359Z:cf17d52a-c5ec-41fe-bde2-125905964cca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:23:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "00fb39bb-a067-4791-ae38-c1fa1d1c1815"
+ ],
+ "x-ms-correlation-request-id": [
+ "00fb39bb-a067-4791-ae38-c1fa1d1c1815"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172414Z:00fb39bb-a067-4791-ae38-c1fa1d1c1815"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:24:14 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "8a70425d-3342-4ff8-a9c5-a9bfcba37ce1"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a70425d-3342-4ff8-a9c5-a9bfcba37ce1"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172430Z:8a70425d-3342-4ff8-a9c5-a9bfcba37ce1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:24:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "7b4686d3-9c14-49a6-a197-a17c01e35ab6"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b4686d3-9c14-49a6-a197-a17c01e35ab6"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172445Z:7b4686d3-9c14-49a6-a197-a17c01e35ab6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:24:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "9aa1332b-216e-4987-b253-eccc4d18f3d8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9aa1332b-216e-4987-b253-eccc4d18f3d8"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172500Z:9aa1332b-216e-4987-b253-eccc4d18f3d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:25:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "2e42af43-0a0a-4ff4-b3b8-4f563fe549a2"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e42af43-0a0a-4ff4-b3b8-4f563fe549a2"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172515Z:2e42af43-0a0a-4ff4-b3b8-4f563fe549a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:25:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MzkyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TXpreUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "726e7361-2f78-4abf-8c15-dc4c238d0c05"
+ ],
+ "x-ms-correlation-request-id": [
+ "726e7361-2f78-4abf-8c15-dc4c238d0c05"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20200817T172515Z:726e7361-2f78-4abf-8c15-dc4c238d0c05"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 17 Aug 2020 17:25:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-SnapshotConfigDiskAccessNetworkPolicy": [
+ "crptestps8392"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
+ }
+}
\ No newline at end of file
diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachinePatchTests/TestPatchStatusGetAzVMinstanceview.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachinePatchTests/TestPatchStatusGetAzVMinstanceview.json
new file mode 100644
index 000000000000..b479894bd12f
--- /dev/null
+++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachinePatchTests/TestPatchStatusGetAzVMinstanceview.json
@@ -0,0 +1,5094 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "460ca884-da24-4fd0-8409-8635ab9e220d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "20c367b9-aa39-4752-8ee8-35cdc5ab6f70"
+ ],
+ "x-ms-correlation-request-id": [
+ "20c367b9-aa39-4752-8ee8-35cdc5ab6f70"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132138Z:20c367b9-aa39-4752-8ee8-35cdc5ab6f70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "34246"
+ ]
+ },
+ "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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\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 \"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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a4f612a-a01e-421a-b14a-d6739585c43f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "00ace706-7502-41c8-b9cf-17cfff97b2b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "00ace706-7502-41c8-b9cf-17cfff97b2b6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132141Z:00ace706-7502-41c8-b9cf-17cfff97b2b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "34246"
+ ]
+ },
+ "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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\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 \"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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps418?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ea56624-cc68-4974-8985-4a2cd20e1c2e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "cdeb00d1-48a5-4de5-b61c-280e846bb116"
+ ],
+ "x-ms-correlation-request-id": [
+ "cdeb00d1-48a5-4de5-b61c-280e846bb116"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132139Z:cdeb00d1-48a5-4de5-b61c-280e846bb116"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:38 GMT"
+ ],
+ "Content-Length": [
+ "177"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418\",\r\n \"name\": \"crptestps418\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/skus?api-version=2019-04-01&$filter=location%20eq%20%27EastUS%27",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTktMDQtMDEmJGZpbHRlcj1sb2NhdGlvbiUyMGVxJTIwJTI3RWFzdFVTJTI3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5dd9ac3c-d71f-4b90-bd08-aa88bb2bc539"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "ac36d7e2-632a-45e5-93cc-cf2b8f656ce2"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac36d7e2-632a-45e5-93cc-cf2b8f656ce2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132139Z:ac36d7e2-632a-45e5-93cc-cf2b8f656ce2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "506520"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S15\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S20\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S30\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S40\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S50\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S60\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"1300\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S70\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"1300\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S80\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32767\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"240\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"240\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"5868000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"211\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"5400000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"123\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P15\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"1100\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"1100\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"125\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"125\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"4320000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"79\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P20\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2300\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"2300\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"150\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"150\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"2160000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"35\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P30\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P40\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P50\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P60\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"10\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P70\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"18000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"18000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"10\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P80\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32767\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"900\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"900\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"10\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E15\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E30\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E40\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E50\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E60\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E70\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"600\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"600\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E80\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32767\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"UltraSSD_LRS\",\r\n \"tier\": \"Ultra\",\r\n \"size\": \"U\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOpsReadWrite\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"MinIOpsReadWrite\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBpsReadWrite\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBpsReadWrite\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n },\r\n {\r\n \"name\": \"MinIOSizeKiBps\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOSizeKiBps\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinIopsReadOnly\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MaxIopsReadOnly\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBpsReadOnly\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBpsReadOnly\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxIopsPerGiBReadWrite\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MaxIopsPerGiBReadOnly\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MinIopsPerGiBReadWrite\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MinIopsPerGiBReadOnly\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"BillingPartitionSizes\",\r\n \"value\": \"4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552,24576,25600,26624,27648,28672,29696,30720,31744,32768,33792,34816,35840,36864,37888,38912,39936,40960,41984,43008,44032,45056,46080,47104,48128,49152,50176,51200,52224,53248,54272,55296,56320,57344,58368,59392,60416,61440,62464,63488,64512,65536\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DSv3-Type2\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"76\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"ESv3-Type2\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"76\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DSv3-Type1\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"ESv3-Type1\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MSv2-Type1\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MSmv2-Type1\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"NVSv3-Type1\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"FSv2-Type2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"LSv2-Type1\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DSv3-Type3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"ESv3-Type3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"ESv4-Type1\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"EDSv4-Type1\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DDSv4-Type1\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DSv4-Type1\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DASv4-Type1\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"EASv4-Type1\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MSm-Type1\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MS-Type1\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"NVASv4-Type1\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ls\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ls\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"0.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"640\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"2400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"23592960\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"23592960\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"1920\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"23592960\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"1600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"15728640\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"15728640\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"1280\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"15728640\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"36700160\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"36700160\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"2880\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"36700160\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B12ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B12ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"98304\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"6\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B16ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8640\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B20ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B20ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"163840\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"46170898432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"184683593728\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"369367187456\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"738734374912\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11-1_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS11_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12-1_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS12_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12-2_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS12_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS13_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS13_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS14_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS14_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"286720\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"140\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"671088640\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"671088640\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"773094113280\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1006632960\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"184683593728\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"369367187456\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"738734374912\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"12884901888\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"25769803776\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"51539607552\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"103079215104\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"206158430208\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"10240\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"20971520\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"20971520\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"20971520\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"81920\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"167772160\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"81920\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"167772160\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"30000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"491782144\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"245366784\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4-2s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-2s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-4s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-4s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-8s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"327680\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"0.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"71680\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"138240\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"291840\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"138240\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"619520\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"291840\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"619520\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"0.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"61440\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"122880\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"245760\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"140\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"60000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"982515712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"490733568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64i_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64i_v3\",\r\n \"family\": \"standardEIv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64is_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64is_v3\",\r\n \"family\": \"standardEISv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M208ms_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"5700\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M208s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M208s_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2850\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416-208s_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"5700\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M416s_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"15118000000000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2000000000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416s_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"5700\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416-208ms_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"11400\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M416ms_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"15118000000000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2000000000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416ms_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"11400\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"family\": \"standardNVFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"family\": \"standardNVFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"family\": \"standardNVFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6_Promo\",\r\n \"family\": \"standardNVPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12_Promo\",\r\n \"family\": \"standardNVPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24_Promo\",\r\n \"family\": \"standardNVPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6s_v2\",\r\n \"family\": \"standardNVSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12s_v2\",\r\n \"family\": \"standardNVSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24s_v2\",\r\n \"family\": \"standardNVSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12s_v3\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24s_v3\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV48s_v3\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_HB120rs_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"HB120rs_v2\",\r\n \"family\": \"standardHBrsv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"960000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"468.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6s_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12s_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24rs_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24rs_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24s_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"32505856\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"32505856\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"34359738368\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"49283072\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"66060288\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"66060288\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"68719476736\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"49283072\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"133169152\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"133169152\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"137438953472\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"199229440\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"267386880\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"267386880\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"274877906944\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"398458880\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F32s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F32s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"549755813888\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F48s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F48s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"824633720832\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1153433600\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F64s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F64s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1099511627776\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1153433600\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F72s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F72s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"589824\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"144\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"144000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1632087572480\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1153433600\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1830912\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"3661824\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"7323648\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L48s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L48s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"10985472\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L64s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L64s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14647296\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L80s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L80s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"18309120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"640\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC8_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"180355072\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC1s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC1s_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"22020096\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC2s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC2s_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"45088768\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC4s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC4s_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"90177536\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"768000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"190000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1209008128\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"603979776\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4-2s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E4s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-2s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-4s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-4s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-8s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4-2ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E4ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-2ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-4ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-4ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-8ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"768000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"190000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1209008128\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"603979776\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"483393536\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NP10s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NP10s\",\r\n \"family\": \"standardNPSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"753664\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"10\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"168\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"10\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NP20s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NP20s\",\r\n \"family\": \"standardNPSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1509376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"336\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NP40s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NP40s\",\r\n \"family\": \"standardNPSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"3018752\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"46170898432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"184683593728\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"369367187456\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D96a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D96a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D96as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D96as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"192000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E96a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E96a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"327680\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E96as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E96as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"192000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_HC44rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"HC44rs\",\r\n \"family\": \"standardHCSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"716800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"44\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"327.83\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND6s\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND12s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND12s\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24rs\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24s\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND40rs_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND40rs_v2\",\r\n \"family\": \"standardNDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2969600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC2s\",\r\n \"family\": \"standardDCSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"46170898432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC4s\",\r\n \"family\": \"standardDCSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1318554959872\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64m\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"2637109919744\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128m\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"2637109919744\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M8-2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M8-2ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"256000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"218.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M8ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"851477266432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M8-4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M8-4ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"256000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"218.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M8ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"851477266432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M8ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"256000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"218.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"851477266432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M16-4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M16-4ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"437.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M16ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1704028274688\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"262144000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M16-8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M16-8ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"437.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M16ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1704028274688\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"262144000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M16ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"437.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1704028274688\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"262144000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32-8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32-8ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"875\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M32ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32-16ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"875\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M32ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32ls\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32ls\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"875\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32ts\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32ts\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M64ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M64ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ls\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ls\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128-32ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M128ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128-64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128-64ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M128ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6s_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12s_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24rs_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24s_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_PB6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"PB6s\",\r\n \"family\": \"standardPBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_HB60rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"HB60rs\",\r\n \"family\": \"standardHBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"716800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"223.52\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND40s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND40s_v3\",\r\n \"family\": \"standardNDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"39630000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV4as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"90112\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV8as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"180224\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV16as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"360448\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV32as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"720896\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/images/Win2016Datacenter?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL1dpbjIwMTZEYXRhY2VudGVyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03d4ac28-d868-4d82-85ea-a36ddcabe9e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "4037c57e-5dbb-447f-8d15-96b5b13390f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "4037c57e-5dbb-447f-8d15-96b5b13390f3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132141Z:4037c57e-5dbb-447f-8d15-96b5b13390f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "226"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/Win2016Datacenter' under resource group 'crptestps418' 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/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7da69beb-19d5-47ad-b925-48c1b1111f88"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2e46cbbb-9e37-4838-8e1d-9aa8dbd69d1c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e46cbbb-9e37-4838-8e1d-9aa8dbd69d1c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132142Z:2e46cbbb-9e37-4838-8e1d-9aa8dbd69d1c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "232"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/vmcrptestps418' under resource group 'crptestps418' 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/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31988"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9413a6cf-4fc4-40ce-b47f-a3804e15ab53"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "650dbf4b-8e92-4af4-8cad-93c80db6c4fa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132219Z:650dbf4b-8e92-4af4-8cad-93c80db6c4fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:19 GMT"
+ ],
+ "Content-Length": [
+ "1908"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"43b18f0a-3928-44dc-86b8-0acb815af833\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3866.2008081933\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmcrptestps418_disk1_b17da8294a1641169652b47f4241e515\",\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/CRPTESTPS418/providers/Microsoft.Compute/disks/vmcrptestps418_disk1_b17da8294a1641169652b47f4241e515\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmcrptestps418\",\r\n \"adminUsername\": \"admin01\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"encryptionAtHost\": false\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps418?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "797c62c1-e2d6-42de-a998-8245c42fdfab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "5fee0709-d458-4821-b73a-af2997cc8dc6"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fee0709-d458-4821-b73a-af2997cc8dc6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132142Z:5fee0709-d458-4821-b73a-af2997cc8dc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "177"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418\",\r\n \"name\": \"crptestps418\",\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/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1jcnB0ZXN0cHM0MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31afd5ee-2a22-4ba1-a8f1-afaa5b552264"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "7bca1f2f-637c-42a9-ab57-bedfb1cf09b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bca1f2f-637c-42a9-ab57-bedfb1cf09b1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132142Z:7bca1f2f-637c-42a9-ab57-bedfb1cf09b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "234"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vmcrptestps418' under resource group 'crptestps418' 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/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1jcnB0ZXN0cHM0MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"c2dfdf67-68b9-4454-b9ae-485f4767a501\""
+ ],
+ "x-ms-request-id": [
+ "7bc1f042-8656-4738-a19c-fa254e644ac0"
+ ],
+ "x-ms-correlation-request-id": [
+ "e76b59aa-eea8-4093-837f-38abcf68e591"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5cd99602-55cf-4864-bb08-cc988575aff8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132150Z:e76b59aa-eea8-4093-837f-38abcf68e591"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:49 GMT"
+ ],
+ "Content-Length": [
+ "1987"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418\",\r\n \"etag\": \"W/\\\"c2dfdf67-68b9-4454-b9ae-485f4767a501\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7039266b-7693-44fc-bcdc-33a09eb5ddfd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418/ipConfigurations/vmcrptestps418\",\r\n \"etag\": \"W/\\\"c2dfdf67-68b9-4454-b9ae-485f4767a501\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418/subnets/vmcrptestps418\"\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\": \"y3zmzepqzyeehc0u1rtgvece0g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1jcnB0ZXN0cHM0MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04bc1afb-b8e9-43c6-bc18-7d591964d110"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "6e959af5-c504-4744-a6d4-e01070adbafe"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e959af5-c504-4744-a6d4-e01070adbafe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132142Z:6e959af5-c504-4744-a6d4-e01070adbafe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "234"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/vmcrptestps418' under resource group 'crptestps418' 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/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1jcnB0ZXN0cHM0MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"0f59cf40-4760-448f-a88b-56ef7dfb1082\""
+ ],
+ "x-ms-request-id": [
+ "f742f570-b810-4970-99d6-527655896505"
+ ],
+ "x-ms-correlation-request-id": [
+ "12118eb9-28b4-41bd-af8d-798328d28030"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4ab122cd-77fc-4310-ba37-5542fac555f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132146Z:12118eb9-28b4-41bd-af8d-798328d28030"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:45 GMT"
+ ],
+ "Content-Length": [
+ "811"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418\",\r\n \"etag\": \"W/\\\"0f59cf40-4760-448f-a88b-56ef7dfb1082\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"167ba7c3-c98b-4b70-8849-1afe7a2387d7\",\r\n \"ipAddress\": \"40.121.107.104\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vmcrptestps418-vmcrptestps418\",\r\n \"fqdn\": \"vmcrptestps418-vmcrptestps418.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "baf482b0-0eaa-4508-b589-dc3cc93b74da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "d47a4b99-6480-445f-95b6-991e7758b1f6"
+ ],
+ "x-ms-correlation-request-id": [
+ "d47a4b99-6480-445f-95b6-991e7758b1f6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132142Z:d47a4b99-6480-445f-95b6-991e7758b1f6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "232"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vmcrptestps418' under resource group 'crptestps418' 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/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"6121caf3-4836-4f3a-b1e2-c179db7a90ff\""
+ ],
+ "x-ms-request-id": [
+ "35b66efa-5117-4c14-93cc-b1d3cb9c40e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1284fa1-a59a-472b-a9f7-2c28045f2469"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1da13adb-54d8-483e-83ef-dd58a43d7e8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132148Z:a1284fa1-a59a-472b-a9f7-2c28045f2469"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:47 GMT"
+ ],
+ "Content-Length": [
+ "1146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418\",\r\n \"etag\": \"W/\\\"6121caf3-4836-4f3a-b1e2-c179db7a90ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"91cc72c7-cef0-4308-8b54-dc666a9044d6\",\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\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418/subnets/vmcrptestps418\",\r\n \"etag\": \"W/\\\"6121caf3-4836-4f3a-b1e2-c179db7a90ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70199ad5-feda-4c64-bf9b-47cbdffb4289"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "eebd71d8-9812-4bc8-b30a-163eb7c3278a"
+ ],
+ "x-ms-correlation-request-id": [
+ "eebd71d8-9812-4bc8-b30a-163eb7c3278a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132142Z:eebd71d8-9812-4bc8-b30a-163eb7c3278a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "238"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vmcrptestps418' under resource group 'crptestps418' 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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"a40ae147-2cb1-48cb-a005-f8c69bab390e\""
+ ],
+ "x-ms-request-id": [
+ "426defa1-9af7-47ac-8432-2ca41c41fb6f"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ded0922-ca80-4591-8f94-ff78abd659c9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "501b377f-c6b2-4084-857b-dc20f0269455"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132148Z:6ded0922-ca80-4591-8f94-ff78abd659c9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:47 GMT"
+ ],
+ "Content-Length": [
+ "8408"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"57b22848-883e-4f27-8adf-337c1fd3a181\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"vmcrptestps4183389\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/securityRules/vmcrptestps4183389\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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\": \"vmcrptestps4185985\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/securityRules/vmcrptestps4185985\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a40ae147-2cb1-48cb-a005-f8c69bab390e\\\"\",\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/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "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\": \"vmcrptestps418\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8722ba9d-452d-42a5-a23a-3b4cb9a02d9a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "306"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "3"
+ ],
+ "x-ms-request-id": [
+ "13ab758b-04c5-424a-ace0-34d5d5fd3acf"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/13ab758b-04c5-424a-ace0-34d5d5fd3acf?api-version=2017-10-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f89c83b-7eb6-4e95-8df4-8d8233278154"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cdd62d48-b1bb-48c6-a91e-77b454724bab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132144Z:0f89c83b-7eb6-4e95-8df4-8d8233278154"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:44 GMT"
+ ],
+ "Content-Length": [
+ "1144"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418\",\r\n \"etag\": \"W/\\\"2a9649d5-4018-4dbf-b860-d4f9e4e1698e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"91cc72c7-cef0-4308-8b54-dc666a9044d6\",\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\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418/subnets/vmcrptestps418\",\r\n \"etag\": \"W/\\\"2a9649d5-4018-4dbf-b860-d4f9e4e1698e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "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\": \"vmcrptestps4183389\"\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\": \"vmcrptestps4185985\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6a86704a-72a3-4467-93e2-d42f3f9a350c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "839"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "3"
+ ],
+ "x-ms-request-id": [
+ "af87644e-34d9-404b-9f0c-85862cae8a18"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/af87644e-34d9-404b-9f0c-85862cae8a18?api-version=2017-10-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ad66da9-539b-49c9-b7e9-9037da60e4e6"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "47c3317b-054d-4413-b819-22dbbea88a58"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132144Z:3ad66da9-539b-49c9-b7e9-9037da60e4e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:44 GMT"
+ ],
+ "Content-Length": [
+ "8399"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"57b22848-883e-4f27-8adf-337c1fd3a181\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"vmcrptestps4183389\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/securityRules/vmcrptestps4183389\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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\": \"vmcrptestps4185985\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/securityRules/vmcrptestps4185985\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7c2ad486-b28f-4d7d-bd6a-c3ce67745e40\\\"\",\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/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1jcnB0ZXN0cHM0MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vmcrptestps418-vmcrptestps418\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b88dd2fa-f53e-4a6e-9198-b338e2f530c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "222"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "fda2dfa6-1be4-4025-baa7-6187bfca88aa"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/fda2dfa6-1be4-4025-baa7-6187bfca88aa?api-version=2017-10-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f8e8c64-1cff-4cb9-8f1d-7d88b5c69f07"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "16d56b20-73a8-4982-8e49-ccf49fa6fb97"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132144Z:5f8e8c64-1cff-4cb9-8f1d-7d88b5c69f07"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:44 GMT"
+ ],
+ "Content-Length": [
+ "774"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418\",\r\n \"etag\": \"W/\\\"7aa5098a-faec-4e5c-901c-36c7e7395568\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"167ba7c3-c98b-4b70-8849-1afe7a2387d7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vmcrptestps418-vmcrptestps418\",\r\n \"fqdn\": \"vmcrptestps418-vmcrptestps418.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/fda2dfa6-1be4-4025-baa7-6187bfca88aa?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRhMmRmYTYtMWJlNC00MDI1LWJhYTctNjE4N2JmY2E4OGFhP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c20d0b86-0325-42b3-ab9f-36f1f7930ca6"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fc56e5b-d951-49fa-b7e4-28db128ad5f0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cf858467-754d-414d-a38c-1ab6ac662c97"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132146Z:7fc56e5b-d951-49fa-b7e4-28db128ad5f0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:45 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/13ab758b-04c5-424a-ace0-34d5d5fd3acf?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTNhYjc1OGItMDRjNS00MjRhLWFjZTAtMzRkNWQ1ZmQzYWNmP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "22915164-ee11-4b35-ac11-cbc1e674538d"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ee30962-97db-41ea-872b-ccac65f3a40d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "09eb454a-6d2f-4b88-b219-3003d3ff8957"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132147Z:3ee30962-97db-41ea-872b-ccac65f3a40d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:47 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/af87644e-34d9-404b-9f0c-85862cae8a18?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWY4NzY0NGUtMzRkOS00MDRiLTlmMGMtODU4NjJjYWU4YTE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "07dce8d5-9a13-477c-8a43-c1ef5d8d5e93"
+ ],
+ "x-ms-correlation-request-id": [
+ "6751697f-7097-4bf8-9998-e89adcbb2056"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0ab399fd-2402-49dc-9d88-00fb01ddc607"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132148Z:6751697f-7097-4bf8-9998-e89adcbb2056"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:47 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418?api-version=2017-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1jcnB0ZXN0cHM0MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418/subnets/vmcrptestps418\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418\"\r\n }\r\n },\r\n \"name\": \"vmcrptestps418\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64b9b378-91c0-4d12-9dd4-362b134e4e97"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "845"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2531b79a-13e5-450a-83ea-2265f1cc2c43"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/2531b79a-13e5-450a-83ea-2265f1cc2c43?api-version=2017-10-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6e6dd16-dccb-4a1c-a52b-c93c680ee214"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "164364e3-5c38-48a8-a642-589e08544f4c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132149Z:a6e6dd16-dccb-4a1c-a52b-c93c680ee214"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:49 GMT"
+ ],
+ "Content-Length": [
+ "1987"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418\",\r\n \"etag\": \"W/\\\"c2dfdf67-68b9-4454-b9ae-485f4767a501\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7039266b-7693-44fc-bcdc-33a09eb5ddfd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418/ipConfigurations/vmcrptestps418\",\r\n \"etag\": \"W/\\\"c2dfdf67-68b9-4454-b9ae-485f4767a501\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/publicIPAddresses/vmcrptestps418\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/virtualNetworks/vmcrptestps418/subnets/vmcrptestps418\"\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\": \"y3zmzepqzyeehc0u1rtgvece0g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkSecurityGroups/vmcrptestps418\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNDE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmcrptestps418\",\r\n \"adminUsername\": \"admin01\",\r\n \"adminPassword\": \"ps8156_196Ab!@\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418\"\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"encryptionAtHost\": false\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7984ac4d-35d2-4007-bfc4-693e0a86b15c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "838"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0543cae3-5527-42bc-85e5-42de9d948404?api-version=2020-06-01"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0543cae3-5527-42bc-85e5-42de9d948404"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f0aa422-faaf-43fe-b9ca-246e63397180"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132152Z:4f0aa422-faaf-43fe-b9ca-246e63397180"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:21:51 GMT"
+ ],
+ "Content-Length": [
+ "1645"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"43b18f0a-3928-44dc-86b8-0acb815af833\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3866.2008081933\"\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 \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmcrptestps418\",\r\n \"adminUsername\": \"admin01\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"encryptionAtHost\": false\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0543cae3-5527-42bc-85e5-42de9d948404?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU0M2NhZTMtNTUyNy00MmJjLTg1ZTUtNDJkZTlkOTQ4NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "4"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "790188a1-bd60-44fb-9610-13f3c866c69e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3703870-f6ee-4944-b950-8b529804a3c6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132202Z:d3703870-f6ee-4944-b950-8b529804a3c6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:01 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:21:51.4528871-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0543cae3-5527-42bc-85e5-42de9d948404\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0543cae3-5527-42bc-85e5-42de9d948404?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU0M2NhZTMtNTUyNy00MmJjLTg1ZTUtNDJkZTlkOTQ4NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "4"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e32d0834-9da2-40e2-b7a7-8a935c9ba18a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "cad832a9-dc4f-456a-9c2d-a52e22b06e5d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132206Z:cad832a9-dc4f-456a-9c2d-a52e22b06e5d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:05 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:21:51.4528871-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0543cae3-5527-42bc-85e5-42de9d948404\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0543cae3-5527-42bc-85e5-42de9d948404?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU0M2NhZTMtNTUyNy00MmJjLTg1ZTUtNDJkZTlkOTQ4NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "4"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b3df0d0c-0ab9-449b-8e76-0b4ff8d4cdcf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba060f7c-0887-46a6-821a-acab64f7306e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132211Z:ba060f7c-0887-46a6-821a-acab64f7306e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:10 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:21:51.4528871-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0543cae3-5527-42bc-85e5-42de9d948404\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0543cae3-5527-42bc-85e5-42de9d948404?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU0M2NhZTMtNTUyNy00MmJjLTg1ZTUtNDJkZTlkOTQ4NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "4"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "120b3d45-30c6-4962-b64d-fae94b820185"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6c699d5-f4a9-48d8-a112-02722a3f2e45"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132215Z:f6c699d5-f4a9-48d8-a112-02722a3f2e45"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:14 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:21:51.4528871-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0543cae3-5527-42bc-85e5-42de9d948404\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0543cae3-5527-42bc-85e5-42de9d948404?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU0M2NhZTMtNTUyNy00MmJjLTg1ZTUtNDJkZTlkOTQ4NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "985874b0-dada-42ee-afa5-4a469add058e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "49031442-d8ef-445f-9e25-6a99ff0ac128"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T132219Z:49031442-d8ef-445f-9e25-6a99ff0ac128"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:19 GMT"
+ ],
+ "Content-Length": [
+ "184"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:21:51.4528871-04:00\",\r\n \"endTime\": \"2020-08-26T09:22:18.8590643-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0543cae3-5527-42bc-85e5-42de9d948404\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418/assessPatches?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNDE4L2Fzc2Vzc1BhdGNoZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b350bb1-ed92-4905-82f1-60572d53348b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.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/14e074b4-2fd7-4d20-8b3b-5339add89570?monitor=true&api-version=2020-06-01"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "14e074b4-2fd7-4d20-8b3b-5339add89570"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f7868eb-4eda-435a-86ab-12ea100784bb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132220Z:4f7868eb-4eda-435a-86ab-12ea100784bb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39aabb2f-7925-4abd-973f-3076552d48f7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "b221324c-53ae-4e82-8ab0-0711e7651b02"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132250Z:b221324c-53ae-4e82-8ab0-0711e7651b02"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:22:49 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6dcf5fa0-4e34-4f31-a0e8-e20611b2934c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a5023d4-a26b-4cf6-91a5-96e7b6c4b9be"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132320Z:1a5023d4-a26b-4cf6-91a5-96e7b6c4b9be"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:23:20 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bad7f857-9f25-4891-bdaa-8fa9ae3dc82c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3785953-4451-4ac5-9368-a880147b41cc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132350Z:d3785953-4451-4ac5-9368-a880147b41cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:23:49 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5c84739-b319-410a-85a3-a4b70f39555b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "36fdc001-537c-47b8-be03-13fb22dbbbf8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132420Z:36fdc001-537c-47b8-be03-13fb22dbbbf8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:24:19 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d129085-1382-470f-8dbc-6c53bb59b9bb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "285466c0-377e-4d13-97cb-dc8d522e119a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132450Z:285466c0-377e-4d13-97cb-dc8d522e119a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:24:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29977"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fccd3c43-dde5-4e84-912a-edc3a9cfa9e4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "002ba9c5-6e39-4db3-80ab-d51011722288"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132520Z:002ba9c5-6e39-4db3-80ab-d51011722288"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:25:19 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29974"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ffacbae0-401a-409d-8f1a-36ab74dea851"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "b77c83d8-a00d-4728-a9ff-ef9c58a70e13"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132550Z:b77c83d8-a00d-4728-a9ff-ef9c58a70e13"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:25:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.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": [
+ "8c4b8874-88d9-46c5-9c26-806f4d246feb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "b83bd4d0-6a84-4eaa-93a4-57ade02f7b9d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132620Z:b83bd4d0-6a84-4eaa-93a4-57ade02f7b9d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:26:19 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29968"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9afa572a-8f1b-481b-a043-09437ed39555"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba25a8fd-39e5-4178-b943-9ae272cafe1f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132650Z:ba25a8fd-39e5-4178-b943-9ae272cafe1f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:26:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29965"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9e15188-6ff5-46ce-a006-f7b6d224ad86"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a1369db-dc50-4d4d-ac01-5c720fb5fe69"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132720Z:8a1369db-dc50-4d4d-ac01-5c720fb5fe69"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:27:20 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29962"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "28c791ba-96fd-42d0-82dc-b1227d55e1f7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa22312c-9f3d-4ea0-bc3c-828f6e9930dc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132750Z:aa22312c-9f3d-4ea0-bc3c-828f6e9930dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:27:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29959"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c0f45c38-5d42-4500-b73f-33ac88f50aa8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "25216184-5e55-41c0-9dd5-8c384532501e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132820Z:25216184-5e55-41c0-9dd5-8c384532501e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:28:20 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29956"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f7e42cd-ef91-4ed9-9e2c-84580742a735"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d65d47d-dafc-4849-8f6f-82d6849c3f44"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132851Z:7d65d47d-dafc-4849-8f6f-82d6849c3f44"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:28:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29953"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f3f3a398-3317-4dc3-8dc9-92e698f03081"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd98a999-42fd-4676-bded-9b8358dbb84b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132921Z:dd98a999-42fd-4676-bded-9b8358dbb84b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:29:21 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29950"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de54ad3f-4e67-4fa3-b81f-9e458ec60164"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0140124-6102-40d3-9278-0d565f6be22d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T132951Z:c0140124-6102-40d3-9278-0d565f6be22d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:29:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29947"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c3fefdf0-7f1e-4575-b267-6bb9f8e8489e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ce872b3-5472-4fc9-a3d4-69203a24b3e5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133021Z:4ce872b3-5472-4fc9-a3d4-69203a24b3e5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:30:20 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29944"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "07f4275d-c94b-48cf-8728-4e9ae7425388"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "893b0f7e-b2e7-430b-a707-2a1cc32d1be0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133051Z:893b0f7e-b2e7-430b-a707-2a1cc32d1be0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:30:51 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29941"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f009dd46-2c73-4064-9606-8f5e5804b58d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "bec44c4b-c87e-4873-865c-74a4625483fc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133121Z:bec44c4b-c87e-4873-865c-74a4625483fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:31:20 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29938"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7861b52a-d2bd-4305-8079-07c4e34d8a87"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "3086814e-f1d0-4696-a179-534f37c52ff3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133151Z:3086814e-f1d0-4696-a179-534f37c52ff3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:31:51 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29935"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09786c74-8b99-4c54-805f-8fc8067865b1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "302ceedf-d9a5-40ec-8c8f-f527012065f1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133221Z:302ceedf-d9a5-40ec-8c8f-f527012065f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:32:21 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29932"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c165268-346b-4162-a589-7d37b0020a5d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5ec55f7-dfda-41b6-9be6-b035b961f464"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133251Z:a5ec55f7-dfda-41b6-9be6-b035b961f464"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:32:50 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29929"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d818dbb-31bc-4c58-a93e-73ed60eb40f8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "f11be7f4-8101-4973-937c-8a2b35aa2528"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133321Z:f11be7f4-8101-4973-937c-8a2b35aa2528"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:33:21 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29925"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "470fcf5d-627c-4d39-972e-4423bae73f52"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0626d67-9201-4fdf-99b3-f40a1385d676"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133351Z:f0626d67-9201-4fdf-99b3-f40a1385d676"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:33:51 GMT"
+ ],
+ "Content-Length": [
+ "1677"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T09:22:19.8590728-04:00\",\r\n \"endTime\": \"2020-08-26T09:33:25.3731131-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"status\": \"Succeeded\",\r\n \"assessmentActivityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"rebootPending\": true,\r\n \"criticalAndSecurityPatchCount\": 0,\r\n \"otherPatchCount\": 3,\r\n \"startDateTime\": \"2020-08-26T09:22:19.8747329-04:00\",\r\n \"availablePatches\": [\r\n {\r\n \"patchId\": \"2221dd34-39bb-4f16-b320-be49fe4a6b95\",\r\n \"name\": \"Windows Malicious Software Removal Tool x64 - v5.82 (KB890830)\",\r\n \"kbId\": \"890830\",\r\n \"classifications\": [\r\n \"UpdateRollUp\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-05-11T20:00:00-04:00\",\r\n \"activityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"lastModifiedDateTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"c8078ab8-da79-4e71-8115-5155ae9f96b6\",\r\n \"name\": \"2020-01 Update for Windows Server 2016 for x64-based Systems (KB4494175)\",\r\n \"kbId\": \"4494175\",\r\n \"classifications\": [\r\n \"Updates\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-05-18T20:00:00-04:00\",\r\n \"activityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"lastModifiedDateTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"7e892feb-46cd-4476-8ac1-291563d6fb30\",\r\n \"name\": \"Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.321.2229.0)\",\r\n \"kbId\": \"2267602\",\r\n \"classifications\": [\r\n \"Definition\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n \"publishedDate\": \"2020-08-25T20:00:00-04:00\",\r\n \"activityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"lastModifiedDateTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"assessmentState\": \"Available\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/14e074b4-2fd7-4d20-8b3b-5339add89570?monitor=true&api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTRlMDc0YjQtMmZkNy00ZDIwLThiM2ItNTMzOWFkZDg5NTcwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29924"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "22801628-74cc-46ae-9b63-74a1ef1ca0ea"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a4035d0-4ae9-4f9f-9112-6a480a8241f6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200826T133352Z:1a4035d0-4ae9-4f9f-9112-6a480a8241f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:33:51 GMT"
+ ],
+ "Content-Length": [
+ "1452"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"assessmentActivityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"rebootPending\": true,\r\n \"criticalAndSecurityPatchCount\": 0,\r\n \"otherPatchCount\": 3,\r\n \"startDateTime\": \"2020-08-26T09:22:19.8747329-04:00\",\r\n \"availablePatches\": [\r\n {\r\n \"patchId\": \"2221dd34-39bb-4f16-b320-be49fe4a6b95\",\r\n \"name\": \"Windows Malicious Software Removal Tool x64 - v5.82 (KB890830)\",\r\n \"kbId\": \"890830\",\r\n \"classifications\": [\r\n \"UpdateRollUp\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-05-11T20:00:00-04:00\",\r\n \"activityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"lastModifiedDateTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"c8078ab8-da79-4e71-8115-5155ae9f96b6\",\r\n \"name\": \"2020-01 Update for Windows Server 2016 for x64-based Systems (KB4494175)\",\r\n \"kbId\": \"4494175\",\r\n \"classifications\": [\r\n \"Updates\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-05-18T20:00:00-04:00\",\r\n \"activityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"lastModifiedDateTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"7e892feb-46cd-4476-8ac1-291563d6fb30\",\r\n \"name\": \"Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.321.2229.0)\",\r\n \"kbId\": \"2267602\",\r\n \"classifications\": [\r\n \"Definition\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n \"publishedDate\": \"2020-08-25T20:00:00-04:00\",\r\n \"activityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"lastModifiedDateTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"assessmentState\": \"Available\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418?$expand=instanceView&api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNDE4PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ccd5a5ee-3144-462f-9be8-f5c001c2c166"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31979"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3ecf340f-1b16-45af-9bf3-c51ed99551c6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f61093b-32ff-47f5-8355-0835ec2ced31"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133352Z:3f61093b-32ff-47f5-8355-0835ec2ced31"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:33:52 GMT"
+ ],
+ "Content-Length": [
+ "6282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"vmcrptestps418\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"43b18f0a-3928-44dc-86b8-0acb815af833\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3866.2008081933\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmcrptestps418_disk1_b17da8294a1641169652b47f4241e515\",\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/CRPTESTPS418/providers/Microsoft.Compute/disks/vmcrptestps418_disk1_b17da8294a1641169652b47f4241e515\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmcrptestps418\",\r\n \"adminUsername\": \"admin01\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"encryptionAtHost\": false\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Network/networkInterfaces/vmcrptestps418\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"vmcrptestps418\",\r\n \"osName\": \"Windows Server 2016 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 10.0.14393.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.992\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and processing the extensions.\",\r\n \"time\": \"2020-08-26T09:33:45-04:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.18.0.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"ExtensionOperation:enable. Status:Success\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.CPlat.Core.WindowsPatchExtension\",\r\n \"typeHandlerVersion\": \"1.5.14\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"patchStatus\": {\r\n \"hotPatchStatus\": {\r\n \"hotPatchCompatibility\": \"Incompatible\",\r\n \"hotPatchOptInCompletionStatus\": \"Unknown\",\r\n \"lastInstalledCumulativeUpdateHotPatchStatus\": \"Unknown\",\r\n \"lastRefreshedTime\": \"2020-08-26T09:33:52.3417145-04:00\",\r\n \"error\": {\r\n \"details\": [\r\n {\r\n \"code\": \"UNSUPPORTED_VM_SIZE_FOR_GEN1\",\r\n \"message\": \"Incompatible VM Size Standard_DS1_v2 for Generation 1 VMs. For more details, visit: aka.ms/HotPatchCompatibility\"\r\n }\r\n ]\r\n }\r\n },\r\n \"availablePatchSummary\": {\r\n \"assessmentActivityId\": \"14e074b4-2fd7-4d20-8b3b-5339add89570\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T09:22:19.8747329-04:00\",\r\n \"lastModifiedTime\": \"2020-08-26T09:32:39.7389829-04:00\",\r\n \"criticalAndSecurityPatchCount\": 0,\r\n \"otherPatchCount\": 3,\r\n \"rebootPending\": true\r\n }\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmcrptestps418_disk1_b17da8294a1641169652b47f4241e515\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-08-26T09:21:53.5153605-04:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.18.0.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"ExtensionOperation:enable. Status:Success\",\r\n \"time\": \"2020-08-26T09:33:38-04:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-08-26T09:33:49.5760914-04:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps418/providers/Microsoft.Compute/virtualMachines/vmcrptestps418/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps418?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29cc1dc0-421a-4e5e-a4f6-f2d2ac8a3f17"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "b704742d-593b-43bb-af92-5b18035a0c70"
+ ],
+ "x-ms-correlation-request-id": [
+ "b704742d-593b-43bb-af92-5b18035a0c70"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133353Z:b704742d-593b-43bb-af92-5b18035a0c70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:33:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "6fddcfca-18ca-4b75-9ab2-4ac515d6d2a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fddcfca-18ca-4b75-9ab2-4ac515d6d2a7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133408Z:6fddcfca-18ca-4b75-9ab2-4ac515d6d2a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:34:07 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "76a7aad7-736a-4906-881f-85629bf11441"
+ ],
+ "x-ms-correlation-request-id": [
+ "76a7aad7-736a-4906-881f-85629bf11441"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133423Z:76a7aad7-736a-4906-881f-85629bf11441"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:34:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "69ef6ef5-3245-4749-ae71-2a8952096abb"
+ ],
+ "x-ms-correlation-request-id": [
+ "69ef6ef5-3245-4749-ae71-2a8952096abb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133438Z:69ef6ef5-3245-4749-ae71-2a8952096abb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:34:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "566f633d-27a4-44fb-8b54-d80dc7de8a60"
+ ],
+ "x-ms-correlation-request-id": [
+ "566f633d-27a4-44fb-8b54-d80dc7de8a60"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133453Z:566f633d-27a4-44fb-8b54-d80dc7de8a60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:34:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "b6bd6272-6c39-4cda-b997-3a8f807b045e"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6bd6272-6c39-4cda-b997-3a8f807b045e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133508Z:b6bd6272-6c39-4cda-b997-3a8f807b045e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:35:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "f2408b67-6bae-4d41-b9cd-69514517843f"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2408b67-6bae-4d41-b9cd-69514517843f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133524Z:f2408b67-6bae-4d41-b9cd-69514517843f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:35:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "001f6ce5-0458-4cc1-9a5b-5663414caeac"
+ ],
+ "x-ms-correlation-request-id": [
+ "001f6ce5-0458-4cc1-9a5b-5663414caeac"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133539Z:001f6ce5-0458-4cc1-9a5b-5663414caeac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:35:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "2f9012cd-2413-433d-8ae7-f322efb29584"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f9012cd-2413-433d-8ae7-f322efb29584"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133554Z:2f9012cd-2413-433d-8ae7-f322efb29584"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:35:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "814bf075-25a8-4577-9ee0-1a7ba3e1c9d5"
+ ],
+ "x-ms-correlation-request-id": [
+ "814bf075-25a8-4577-9ee0-1a7ba3e1c9d5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133609Z:814bf075-25a8-4577-9ee0-1a7ba3e1c9d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:36:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "46191685-e902-45f8-bede-3f6fd0b95c70"
+ ],
+ "x-ms-correlation-request-id": [
+ "46191685-e902-45f8-bede-3f6fd0b95c70"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133624Z:46191685-e902-45f8-bede-3f6fd0b95c70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:36:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "0c75e663-9633-4d5a-a6d8-0fc6504d39d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c75e663-9633-4d5a-a6d8-0fc6504d39d3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133639Z:0c75e663-9633-4d5a-a6d8-0fc6504d39d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:36:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "b878bfa4-5c96-4d06-9b4a-2fd5df6a2473"
+ ],
+ "x-ms-correlation-request-id": [
+ "b878bfa4-5c96-4d06-9b4a-2fd5df6a2473"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133654Z:b878bfa4-5c96-4d06-9b4a-2fd5df6a2473"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:36:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "92aab698-04a8-43dc-859b-94d23416a3dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "92aab698-04a8-43dc-859b-94d23416a3dd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133709Z:92aab698-04a8-43dc-859b-94d23416a3dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:37:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "59800429-c018-49ff-9591-ca490bf8bfb0"
+ ],
+ "x-ms-correlation-request-id": [
+ "59800429-c018-49ff-9591-ca490bf8bfb0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133724Z:59800429-c018-49ff-9591-ca490bf8bfb0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:37:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "377ab5ba-ec3d-4eef-9b37-bec9c76d9d5e"
+ ],
+ "x-ms-correlation-request-id": [
+ "377ab5ba-ec3d-4eef-9b37-bec9c76d9d5e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133740Z:377ab5ba-ec3d-4eef-9b37-bec9c76d9d5e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:37:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "85b3e25b-4da4-456f-8cc8-0f2f6e782eae"
+ ],
+ "x-ms-correlation-request-id": [
+ "85b3e25b-4da4-456f-8cc8-0f2f6e782eae"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133755Z:85b3e25b-4da4-456f-8cc8-0f2f6e782eae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:37:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "5042bfbb-8c35-413b-a4fd-0480f55b35d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "5042bfbb-8c35-413b-a4fd-0480f55b35d3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133810Z:5042bfbb-8c35-413b-a4fd-0480f55b35d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:38:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "91ba228d-37f9-453e-a4d9-a2f053b56173"
+ ],
+ "x-ms-correlation-request-id": [
+ "91ba228d-37f9-453e-a4d9-a2f053b56173"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133825Z:91ba228d-37f9-453e-a4d9-a2f053b56173"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:38:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "bdb89c6f-4106-4483-8f7a-43b5b085a23d"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdb89c6f-4106-4483-8f7a-43b5b085a23d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133840Z:bdb89c6f-4106-4483-8f7a-43b5b085a23d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:38:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "e3fc5ee7-c3a8-44bc-9850-3fa0f5b252d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3fc5ee7-c3a8-44bc-9850-3fa0f5b252d6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133855Z:e3fc5ee7-c3a8-44bc-9850-3fa0f5b252d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:38:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-request-id": [
+ "065207c6-0ce3-4680-89fe-c47d03e63002"
+ ],
+ "x-ms-correlation-request-id": [
+ "065207c6-0ce3-4680-89fe-c47d03e63002"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133910Z:065207c6-0ce3-4680-89fe-c47d03e63002"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:39:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-request-id": [
+ "0edf0a6f-c08a-4f4e-a639-db8e75769711"
+ ],
+ "x-ms-correlation-request-id": [
+ "0edf0a6f-c08a-4f4e-a639-db8e75769711"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133925Z:0edf0a6f-c08a-4f4e-a639-db8e75769711"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:39:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-request-id": [
+ "a33b75a8-6d11-4412-87b8-5035279f8bd3"
+ ],
+ "x-ms-correlation-request-id": [
+ "a33b75a8-6d11-4412-87b8-5035279f8bd3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133940Z:a33b75a8-6d11-4412-87b8-5035279f8bd3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:39:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "99875b25-bc4c-4247-a08d-053914aa86a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "99875b25-bc4c-4247-a08d-053914aa86a4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T133956Z:99875b25-bc4c-4247-a08d-053914aa86a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:39:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-request-id": [
+ "52dd0ac9-3801-4196-8865-cba5a050d2b5"
+ ],
+ "x-ms-correlation-request-id": [
+ "52dd0ac9-3801-4196-8865-cba5a050d2b5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T134011Z:52dd0ac9-3801-4196-8865-cba5a050d2b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:40:11 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "b4777679-1e60-4658-bb00-4a600e086659"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4777679-1e60-4658-bb00-4a600e086659"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T134026Z:b4777679-1e60-4658-bb00-4a600e086659"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:40:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRndFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-request-id": [
+ "c7b85c40-c668-4f3d-b492-c5bfde0822e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7b85c40-c668-4f3d-b492-c5bfde0822e7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20200826T134026Z:c7b85c40-c668-4f3d-b492-c5bfde0822e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 13:40:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-PatchStatusGetAzVMinstanceview": [
+ "crptestps418",
+ "ps8156"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
+ }
+}
\ No newline at end of file
diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1
index f234286d4dab..ad46795ddae4 100644
--- a/src/Compute/Compute/Az.Compute.psd1
+++ b/src/Compute/Compute/Az.Compute.psd1
@@ -168,7 +168,8 @@ CmdletsToExport = 'Remove-AzAvailabilitySet', 'Get-AzAvailabilitySet',
'Remove-AzHost', 'New-AzDiskEncryptionSetConfig',
'New-AzDiskEncryptionSet', 'Get-AzDiskEncryptionSet',
'Remove-AzDiskEncryptionSet', 'Update-AzDiskEncryptionSet',
- 'Set-AzVmssOrchestrationServiceState', 'Invoke-AzVmPatchAssessment'
+ 'Set-AzVmssOrchestrationServiceState', 'New-AzDiskAccess', 'Remove-AzDiskAccess', 'Get-AzDiskAccess',
+ 'Invoke-AzVmPatchAssessment'
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md
index 473ed6e9c51a..429111414607 100644
--- a/src/Compute/Compute/ChangeLog.md
+++ b/src/Compute/Compute/ChangeLog.md
@@ -17,14 +17,17 @@
## YYYY.MM.DD - Version X.Y.Z (Previous Release)
* Overview of change #1
- Additional information about change #1
--->
+
+-->
## Upcoming Release
+* Added the '-EncryptionType' optional parameter to New-AzVmDiskEncryptionSetConfig.
+* New cmdlets for new resource type: DiskAccess 'Get-AzDiskAccess', 'New-AzDiskAccess' , 'Get-AzDiskAccess'
+* Added optional parameters '-DiskAccessId' and '-NetworkAccessPolicy' to New-AzSnapshotConfig
+* Added optional parameters '-DiskAccessId' and '-NetworkAccessPolicy' to New-AzDiskConfig
+* Added 'PatchStatus'Property to VirtualMachine Instance View
* Added ``VMHealth`` property to the virtual machine's instance view, which is the returned object when ``Get-AzVm`` is invoked with ``-Status``
* Added 'AssignedHost' field to Get-AzVM and Get-AzVmss's instance views. The field shows the resource id of the virtual machine instance
-* Added `SupportAutomaticPlacement` to New-AzHostGroup
-* Added '-EncryptionAtHost' parameter to New-AzVm, New-AzVmss, New-AzVMConfig, New-AzVmssConfig, Update-AzVM, and Update-AzVmss
-* Added 'SecurityProfile' to Get-AzVM and Get-AzVmss return object
-* Added the '-InstanceView' switch as optional parameter to Get-AzHostGroup
+* Added optional parameter '-SupportAutomaticPlacement' to New-AzHostGroup
* Added the '-HostGroupId' parameter to New-AzVm and New-AzVmss
## Version 4.3.1
diff --git a/src/Compute/Compute/Disk/GetAzDiskAccessCommand.cs b/src/Compute/Compute/Disk/GetAzDiskAccessCommand.cs
new file mode 100644
index 000000000000..a8ebc55c6c90
--- /dev/null
+++ b/src/Compute/Compute/Disk/GetAzDiskAccessCommand.cs
@@ -0,0 +1,119 @@
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Compute.Automation.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Compute;
+using Microsoft.Azure.Management.Compute.Models;
+using Microsoft.WindowsAzure.Commands.Utilities.Common;
+
+namespace Microsoft.Azure.Commands.Compute.Automation
+{
+ [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DiskAccess", DefaultParameterSetName = DefaultParameterSet)]
+ [OutputType(typeof(PSDiskAccess))]
+ public partial class GetAzureDiskAccess : ComputeAutomationBaseCmdlet
+ {
+ private const string DefaultParameterSet = "DefaultParameterSet";
+ private const string ResourceIDParameterSet = "ResourceIDParameterSet";
+
+ [Parameter(
+ ParameterSetName = DefaultParameterSet,
+ Position = 0,
+ ValueFromPipelineByPropertyName = true)]
+ [ResourceGroupCompleter]
+ [SupportsWildcards]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(
+ ParameterSetName = DefaultParameterSet,
+ Position = 1,
+ ValueFromPipelineByPropertyName = true)]
+ [ResourceNameCompleter("Microsoft.Compute/diskAccesses", "ResourceGroupName")]
+ [SupportsWildcards]
+ [Alias("diskAccessName")]
+ public string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ Position = 0,
+ ParameterSetName = ResourceIDParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Resource ID for your disk access.")]
+ [ResourceIdCompleter("Microsoft.Compute/diskAccesses")]
+ public string ResourceId { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+ ExecuteClientAction(() =>
+ {
+ string resourceGroupName;
+ string diskAccessName;
+
+ if (this.ParameterSetName == ResourceIDParameterSet)
+ {
+ resourceGroupName = GetResourceGroupName(this.ResourceId);
+ diskAccessName = GetResourceName(this.ResourceId, "Microsoft.Compute/diskAccesses");
+ }
+ else
+ {
+ resourceGroupName = this.ResourceGroupName;
+ diskAccessName = this.Name;
+ }
+
+ if (ShouldGetByName(resourceGroupName, diskAccessName))
+ {
+ var result = DiskAccessesClient.Get(resourceGroupName, diskAccessName);
+ var psObject = new PSDiskAccess();
+ ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject);
+ WriteObject(psObject);
+ }
+ else if (ShouldListByResourceGroup(resourceGroupName, diskAccessName))
+ {
+ var result = DiskAccessesClient.ListByResourceGroup(resourceGroupName);
+ var resultList = result.ToList();
+ var nextPageLink = result.NextPageLink;
+ while (!string.IsNullOrEmpty(nextPageLink))
+ {
+ var pageResult = DiskAccessesClient.ListByResourceGroupNext(nextPageLink);
+ foreach (var pageItem in pageResult)
+ {
+ resultList.Add(pageItem);
+ }
+ nextPageLink = pageResult.NextPageLink;
+ }
+ var psObject = new List();
+ foreach (var r in resultList)
+ {
+ psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r));
+ }
+ WriteObject(TopLevelWildcardFilter(resourceGroupName, diskAccessName, psObject), true);
+ }
+ else
+ {
+ var result = DiskAccessesClient.List();
+ var resultList = result.ToList();
+ var nextPageLink = result.NextPageLink;
+ while (!string.IsNullOrEmpty(nextPageLink))
+ {
+ var pageResult = DiskAccessesClient.ListNext(nextPageLink);
+ foreach (var pageItem in pageResult)
+ {
+ resultList.Add(pageItem);
+ }
+ nextPageLink = pageResult.NextPageLink;
+ }
+ var psObject = new List();
+ foreach (var r in resultList)
+ {
+ psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r));
+ }
+ WriteObject(TopLevelWildcardFilter(resourceGroupName, diskAccessName, psObject), true);
+ }
+ });
+ }
+ }
+}
diff --git a/src/Compute/Compute/Disk/NewAzDiskAccessCommand.cs b/src/Compute/Compute/Disk/NewAzDiskAccessCommand.cs
new file mode 100644
index 000000000000..383ddcb0d081
--- /dev/null
+++ b/src/Compute/Compute/Disk/NewAzDiskAccessCommand.cs
@@ -0,0 +1,63 @@
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Compute.Automation.Models;
+using Microsoft.Azure.Commands.Compute.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Compute;
+using Microsoft.Azure.Management.Compute.Models;
+using Microsoft.WindowsAzure.Commands.Utilities.Common;
+
+namespace Microsoft.Azure.Commands.Compute.Automation
+{
+ [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DiskAccess", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)]
+ [OutputType(typeof(PSDiskAccess))]
+ public class NewAzureDiskAccess : ComputeAutomationBaseCmdlet
+ {
+
+ [Parameter(
+ Position = 0,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true)]
+ [ResourceGroupCompleter]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Position = 1,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true)]
+ [Alias("DiskAccessName")]
+ public string Name { get; set; }
+
+ [Parameter(
+ Position = 2,
+ Mandatory = true,
+ ValueFromPipeline = true)]
+ [LocationCompleter("Microsoft.Compute/diskaccesses")]
+ public string Location { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+ ExecuteClientAction(() =>
+ {
+ if (ShouldProcess(this.Name, VerbsCommon.New))
+ {
+ DiskAccess diskAccess = new DiskAccess();
+ diskAccess.Location = this.Location;
+
+ var result = DiskAccessesClient.CreateOrUpdate(this.ResourceGroupName, this.Name, diskAccess);
+ var psObject = new PSDiskAccess();
+ ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject);
+ WriteObject(psObject);
+ }
+ });
+ }
+ }
+}
diff --git a/src/Compute/Compute/Disk/RemoveDiskAccessCommand.cs b/src/Compute/Compute/Disk/RemoveDiskAccessCommand.cs
new file mode 100644
index 000000000000..d5bbe3a852da
--- /dev/null
+++ b/src/Compute/Compute/Disk/RemoveDiskAccessCommand.cs
@@ -0,0 +1,104 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Compute.Automation.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Compute;
+using Microsoft.Azure.Management.Compute.Models;
+using Microsoft.WindowsAzure.Commands.Utilities.Common;
+
+namespace Microsoft.Azure.Commands.Compute.Automation
+{
+ [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DiskAccess", DefaultParameterSetName = DefaultParameterSet, SupportsShouldProcess = true)]
+ [OutputType(typeof(PSOperationStatusResponse))]
+ public partial class RemoveAzureDiskAccess : ComputeAutomationBaseCmdlet
+ {
+
+ private const string DefaultParameterSet = "DefaultParameterSet";
+ private const string InputObjectParameterSet = "InputObjectParameterSet";
+ private const string ResourceIDParameterSet = "ResourceIDParameterSet";
+
+ [Parameter(
+ ParameterSetName = DefaultParameterSet,
+ Position = 0,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true)]
+ [ResourceGroupCompleter]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(
+ ParameterSetName = DefaultParameterSet,
+ Position = 1,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true)]
+ [ResourceNameCompleter("Microsoft.Compute/diskAccesses", "ResourceGroupName")]
+ [Alias("DiskAccessName")]
+ public string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ Position = 0,
+ ParameterSetName = ResourceIDParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Resource ID for your disk access.")]
+ [ResourceIdCompleter("Microsoft.Compute/diskAccesses")]
+ public string ResourceId { get; set; }
+
+ [Alias("DiskAccess")]
+ [Parameter(
+ Mandatory = true,
+ Position = 0,
+ ParameterSetName = InputObjectParameterSet,
+ ValueFromPipeline = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "PowerShell Disk Access Object")]
+ [ValidateNotNullOrEmpty]
+ public PSDiskAccess InputObject { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+ ExecuteClientAction(() =>
+ {
+ if (ShouldProcess(this.Name, VerbsCommon.Remove))
+ {
+ string resourceGroupName;
+ string diskAccessName;
+ switch (this.ParameterSetName)
+ {
+ case ResourceIDParameterSet:
+ resourceGroupName = GetResourceGroupName(this.ResourceId);
+ diskAccessName = GetResourceName(this.ResourceId, "Microsoft.Compute/diskAccesses");
+ break;
+ case InputObjectParameterSet:
+ resourceGroupName = GetResourceGroupName(this.InputObject.Id);
+ diskAccessName = GetResourceName(this.InputObject.Id, "Microsoft.Compute/diskAccesses");
+ break;
+ default:
+ resourceGroupName = this.ResourceGroupName;
+ diskAccessName = this.Name;
+ break;
+ }
+
+ var result = DiskAccessesClient.DeleteWithHttpMessagesAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult();
+ PSOperationStatusResponse output = new PSOperationStatusResponse
+ {
+ StartTime = this.StartTime,
+ EndTime = DateTime.Now
+ };
+
+ if (result != null && result.Request != null && result.Request.RequestUri != null)
+ {
+ output.Name = GetOperationIdFromUrlString(result.Request.RequestUri.ToString());
+ }
+
+ WriteObject(output);
+ }
+ });
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs
index 6999e2be4623..a30cf946f2b2 100644
--- a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs
+++ b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs
@@ -122,6 +122,14 @@ public IDisksOperations DisksClient
}
}
+ public IDiskAccessesOperations DiskAccessesClient
+ {
+ get
+ {
+ return ComputeClient.ComputeManagementClient.DiskAccesses;
+ }
+ }
+
public IGalleriesOperations GalleriesClient
{
get
diff --git a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs
index 9995eef36481..43297f0779af 100644
--- a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs
+++ b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs
@@ -165,6 +165,17 @@ public partial class NewAzureRmDiskConfigCommand : Microsoft.Azure.Commands.Reso
[PSArgumentCompleter("EncryptionAtRestWithPlatformKey", "EncryptionAtRestWithCustomerKey")]
public string EncryptionType { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true)]
+ public string DiskAccessId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true)]
+ [PSArgumentCompleter("AllowAll", "AllowPrivate", "DenyAll")]
+ public string NetworkAccessPolicy { get; set; }
+
protected override void ProcessRecord()
{
if (ShouldProcess("Disk", "New"))
@@ -343,6 +354,8 @@ private void Run()
CreationData = vCreationData,
EncryptionSettingsCollection = vEncryptionSettingsCollection,
Encryption = vEncryption,
+ NetworkAccessPolicy = this.IsParameterBound(c => c.NetworkAccessPolicy) ? this.NetworkAccessPolicy : null,
+ DiskAccessId = this.IsParameterBound(c => c.DiskAccessId) ? this.DiskAccessId : null
};
WriteObject(vDisk);
diff --git a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskUpdateConfigCommand.cs b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskUpdateConfigCommand.cs
index 2e1b34eb27ec..02b072487e8d 100644
--- a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskUpdateConfigCommand.cs
+++ b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskUpdateConfigCommand.cs
@@ -43,6 +43,17 @@ public partial class NewAzureRmDiskUpdateConfigCommand : Microsoft.Azure.Command
[PSArgumentCompleter("Standard_LRS", "Premium_LRS", "StandardSSD_LRS", "UltraSSD_LRS")]
public string SkuName { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true)]
+ [PSArgumentCompleter("AllowAll", "AllowPrivate", "DenyAll")]
+ public string NetworkAccessPolicy { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true)]
+ public string DiskAccessId { get; set; }
+
[Parameter(
Mandatory = false,
Position = 1,
@@ -203,6 +214,8 @@ private void Run()
DiskIOPSReadWrite = this.IsParameterBound(c => c.DiskIOPSReadWrite) ? this.DiskIOPSReadWrite : (int?)null,
DiskMBpsReadWrite = this.IsParameterBound(c => c.DiskMBpsReadWrite) ? this.DiskMBpsReadWrite : (int?)null,
Tags = this.IsParameterBound(c => c.Tag) ? this.Tag.Cast().ToDictionary(ht => (string)ht.Key, ht => (string)ht.Value) : null,
+ NetworkAccessPolicy = this.IsParameterBound(c => c.NetworkAccessPolicy) ? this.NetworkAccessPolicy: null,
+ DiskAccessId = this.IsParameterBound(c => c.DiskAccessId) ? this.DiskAccessId: null,
EncryptionSettingsCollection = vEncryptionSettingsCollection,
Encryption = vEncryption,
Sku = vSku,
diff --git a/src/Compute/Compute/Generated/DiskEncryptionSet/Config/NewAzureRmDiskEncryptionSetConfigCommand.cs b/src/Compute/Compute/Generated/DiskEncryptionSet/Config/NewAzureRmDiskEncryptionSetConfigCommand.cs
index e0dacf708f0d..4183709ab76c 100644
--- a/src/Compute/Compute/Generated/DiskEncryptionSet/Config/NewAzureRmDiskEncryptionSetConfigCommand.cs
+++ b/src/Compute/Compute/Generated/DiskEncryptionSet/Config/NewAzureRmDiskEncryptionSetConfigCommand.cs
@@ -66,6 +66,13 @@ public partial class NewAzureRmDiskEncryptionSetConfigCommand : Microsoft.Azure.
ValueFromPipelineByPropertyName = true)]
public string KeyUrl { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Use this to set the encryption type of the disk encryption set")]
+ [PSArgumentCompleter("EncryptionAtRestWithPlatformAndCustomerKeys", "EncryptionAtRestWithCustomerKey")]
+ public string EncryptionType { get; set; }
+
protected override void ProcessRecord()
{
if (ShouldProcess("DiskEncryptionSet", "New"))
@@ -117,6 +124,7 @@ private void Run()
{
Location = this.IsParameterBound(c => c.Location) ? this.Location : null,
Tags = this.IsParameterBound(c => c.Tag) ? this.Tag.Cast().ToDictionary(ht => (string)ht.Key, ht => (string)ht.Value) : null,
+ EncryptionType = this.IsParameterBound(c => c.EncryptionType) ? this.EncryptionType : null,
Identity = vIdentity,
ActiveKey = vActiveKey,
};
diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs
index 0bcf2cf4fdfe..a7f73db9290a 100644
--- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs
+++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs
@@ -180,8 +180,16 @@ private static void Initialize()
.ForMember(c => c.Type, o => o.MapFrom(r => r.Type1));
cfg.CreateMap()
.ForMember(c => c.Type1, o => o.MapFrom(r => r.Type));
+
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+
cfg.CreateMap();
cfg.CreateMap();
+
});
_mapper = config.CreateMapper();
}
diff --git a/src/Compute/Compute/Generated/Models/PSDisk.cs b/src/Compute/Compute/Generated/Models/PSDisk.cs
index fd894f52fa48..ff43f6e4258b 100644
--- a/src/Compute/Compute/Generated/Models/PSDisk.cs
+++ b/src/Compute/Compute/Generated/Models/PSDisk.cs
@@ -66,6 +66,9 @@ public string ResourceGroupName
public string Type { get; set; }
public string Location { get; set; }
public IDictionary Tags { get; set; }
+ // Gets or sets possible values include: 'AllowAll', 'AllowPrivate', 'DenyAll'
+ public string NetworkAccessPolicy { get; set; }
+ public string DiskAccessId { get; set; }
}
}
diff --git a/src/Compute/Compute/Generated/Models/PSDiskEncryptionSet.cs b/src/Compute/Compute/Generated/Models/PSDiskEncryptionSet.cs
index f23a344e8425..e8def4d1135b 100644
--- a/src/Compute/Compute/Generated/Models/PSDiskEncryptionSet.cs
+++ b/src/Compute/Compute/Generated/Models/PSDiskEncryptionSet.cs
@@ -49,6 +49,7 @@ public string ResourceGroupName
public string Type { get; set; }
public string Location { get; set; }
public IDictionary Tags { get; set; }
+ public string EncryptionType { get; set; }
}
}
diff --git a/src/Compute/Compute/Generated/Models/PSDiskUpdate.cs b/src/Compute/Compute/Generated/Models/PSDiskUpdate.cs
index d9fac9c3c5c8..10984c6fb769 100644
--- a/src/Compute/Compute/Generated/Models/PSDiskUpdate.cs
+++ b/src/Compute/Compute/Generated/Models/PSDiskUpdate.cs
@@ -38,6 +38,8 @@ public partial class PSDiskUpdate
public Encryption Encryption { get; set; }
public IDictionary Tags { get; set; }
public DiskSku Sku { get; set; }
+ public string NetworkAccessPolicy { get; set; }
+ public string DiskAccessId { get; set; }
}
}
diff --git a/src/Compute/Compute/Generated/Models/PSSnapshot.cs b/src/Compute/Compute/Generated/Models/PSSnapshot.cs
index b9e8d569eb12..be9de699788c 100644
--- a/src/Compute/Compute/Generated/Models/PSSnapshot.cs
+++ b/src/Compute/Compute/Generated/Models/PSSnapshot.cs
@@ -58,6 +58,9 @@ public string ResourceGroupName
public string Type { get; set; }
public string Location { get; set; }
public IDictionary Tags { get; set; }
+ // Gets or sets possible values include: 'AllowAll', 'AllowPrivate', 'DenyAll'
+ public string NetworkAccessPolicy { get; set; }
+ public string DiskAccessId { get; set; }
}
}
diff --git a/src/Compute/Compute/Generated/Models/PSVirtualMachineInstanceView.cs b/src/Compute/Compute/Generated/Models/PSVirtualMachineInstanceView.cs
index ca1e55bcdc32..4b6c9308e757 100644
--- a/src/Compute/Compute/Generated/Models/PSVirtualMachineInstanceView.cs
+++ b/src/Compute/Compute/Generated/Models/PSVirtualMachineInstanceView.cs
@@ -41,6 +41,7 @@ public partial class PSVirtualMachineInstanceView
public IList Extensions { get; set; }
public BootDiagnosticsInstanceView BootDiagnostics { get; set; }
public IList Statuses { get; set; }
+ public VirtualMachinePatchStatus PatchStatus { get; set; }
public VirtualMachineHealthStatus VmHealth { get; set; }
}
diff --git a/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs b/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs
index 6e9f9a44bdec..dc3b14fe5a85 100644
--- a/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs
+++ b/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs
@@ -129,6 +129,17 @@ public partial class NewAzureRmSnapshotConfigCommand : Microsoft.Azure.Commands.
[PSArgumentCompleter("EncryptionAtRestWithPlatformKey", "EncryptionAtRestWithCustomerKey")]
public string EncryptionType { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true)]
+ public string DiskAccessId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true)]
+ [PSArgumentCompleter("AllowAll", "AllowPrivate", "DenyAll")]
+ public string NetworkAccessPolicy { get; set; }
+
protected override void ProcessRecord()
{
if (ShouldProcess("Snapshot", "New"))
@@ -284,6 +295,8 @@ private void Run()
CreationData = vCreationData,
EncryptionSettingsCollection = vEncryptionSettingsCollection,
Encryption = vEncryption,
+ NetworkAccessPolicy = this.IsParameterBound(c => c.NetworkAccessPolicy) ? this.NetworkAccessPolicy : null,
+ DiskAccessId = this.IsParameterBound(c => c.DiskAccessId) ? this.DiskAccessId : null
};
WriteObject(vSnapshot);
diff --git a/src/Compute/Compute/Models/PSDiskAccess.cs b/src/Compute/Compute/Models/PSDiskAccess.cs
new file mode 100644
index 000000000000..a467a19e9d4e
--- /dev/null
+++ b/src/Compute/Compute/Models/PSDiskAccess.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Text.RegularExpressions;
+using Microsoft.Azure.Management.Compute.Models;
+
+namespace Microsoft.Azure.Commands.Compute.Automation.Models
+{
+ public class PSDiskAccess
+ {
+ public IList PrivateEndpointConnections { get; set; }
+ public string ProvisioningState { get; set; }
+ public DateTime? TimeCreated { get; set; }
+ public string Location { get; set; }
+ public string Id { get; set; }
+ public string Name { get; set; }
+ public string Type { get; set; }
+ public IDictionary Tags { get; set; }
+ }
+}
diff --git a/src/Compute/Compute/Models/PSDiskAccessList.cs b/src/Compute/Compute/Models/PSDiskAccessList.cs
new file mode 100644
index 000000000000..c453472942d7
--- /dev/null
+++ b/src/Compute/Compute/Models/PSDiskAccessList.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Compute.Automation.Models
+{
+ public class PSDiskAccessList : PSDiskAccess
+ {
+ public PSDiskAccess ToPSDiskAccess ()
+ {
+ return ComputeAutomationAutoMapperProfile.Mapper.Map(this);
+ }
+ }
+}
diff --git a/src/Compute/Compute/Models/PSVirtualMachineInstanceView.cs b/src/Compute/Compute/Models/PSVirtualMachineInstanceView.cs
index 3d81dcfa1710..89f18869f035 100644
--- a/src/Compute/Compute/Models/PSVirtualMachineInstanceView.cs
+++ b/src/Compute/Compute/Models/PSVirtualMachineInstanceView.cs
@@ -45,6 +45,7 @@ public class PSVirtualMachineInstanceView
public IList Statuses { get; set; }
public MaintenanceRedeployStatus MaintenanceRedeployStatus { get; set; }
+ public VirtualMachinePatchStatus PatchStatus { get; set; }
public VirtualMachineHealthStatus VMHealth { get; set; }
}
@@ -72,6 +73,7 @@ public static PSVirtualMachineInstanceView ToPSVirtualMachineInstanceView(
OsName = virtualMachineInstanceView.OsName,
OsVersion = virtualMachineInstanceView.OsVersion,
HyperVGeneration = virtualMachineInstanceView.HyperVGeneration,
+ PatchStatus = virtualMachineInstanceView.PatchStatus,
VMHealth = virtualMachineInstanceView.VmHealth,
AssignedHost = virtualMachineInstanceView.AssignedHost
};
diff --git a/src/Compute/Compute/help/Az.Compute.md b/src/Compute/Compute/help/Az.Compute.md
index 37db11a2bfd2..cc93eb99b78b 100644
--- a/src/Compute/Compute/help/Az.Compute.md
+++ b/src/Compute/Compute/help/Az.Compute.md
@@ -89,6 +89,9 @@ Gets a container service.
### [Get-AzDisk](Get-AzDisk.md)
Gets the properties of a Managed disk.
+### [Get-AzDiskAccess](Get-AzDiskAccess.md)
+Gets the properties of Disk Accesses
+
### [Get-AzDiskEncryptionSet](Get-AzDiskEncryptionSet.md)
Get or list disk encryption sets.
@@ -233,6 +236,9 @@ Creates a local configuration object for a container service.
### [New-AzDisk](New-AzDisk.md)
Creates a managed disk.
+### [New-AzDiskAccess](New-AzDiskAccess.md)
+Creates a Disk Access resource
+
### [New-AzDiskConfig](New-AzDiskConfig.md)
Creates a configurable disk object.
@@ -326,6 +332,9 @@ Removes an agent pool profile from a container service.
### [Remove-AzDisk](Remove-AzDisk.md)
Removes a disk.
+### [Remove-AzDiskAccess](Remove-AzDiskAccess.md)
+Removes a disk access resource.
+
### [Remove-AzDiskEncryptionSet](Remove-AzDiskEncryptionSet.md)
Removes a disk encryption set.
diff --git a/src/Compute/Compute/help/Get-AzDiskAccess.md b/src/Compute/Compute/help/Get-AzDiskAccess.md
new file mode 100644
index 000000000000..f84598073995
--- /dev/null
+++ b/src/Compute/Compute/help/Get-AzDiskAccess.md
@@ -0,0 +1,223 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
+Module Name: Az.Compute
+schema: 2.0.0
+---
+
+# Get-AzDiskAccess
+
+## SYNOPSIS
+Gets the properties of Disk Accesses
+
+## SYNTAX
+
+### DefaultParameterSet (Default)
+```
+Get-AzDiskAccess [[-ResourceGroupName] ] [[-Name] ] [-DefaultProfile ]
+ []
+```
+
+### ResourceIDParameterSet
+```
+Get-AzDiskAccess [-ResourceId] [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzDiskAccess** cmdlet gets the properties of Disk Accesses
+
+## EXAMPLES
+
+### Example 1: Using Default Parameter Set
+```
+PS C:\> Get-AzDiskAccess -ResourceGroupName 'ResourceGroup01' -Name 'DiskAccess01'
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:02:50 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess01
+Name : DiskAccess01
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+```
+
+This command gets the properties of a Disk Access resource named 'DiskAccess01' in the resource group 'ResourceGroup01'.
+
+### Example 2: Get-AzDiskAccess by Resource Group
+```
+PS C:\> Get-AzDiskAccess -ResourceGroupName 'ResourceGroup01'
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:02:50 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess01
+Name : DiskAccess01
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:05:19 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess02
+Name : DiskAccess02
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+```
+
+This command gets the properties of all disk accesses in the resource group 'ResourceGroup01'.
+
+
+### Example 3: Getting all Disk Access
+```
+PS C:\> Get-AzDiskAccess
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:02:50 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess01
+Name : DiskAccess01
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:05:19 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup21/providers/Microsoft.Compute/diskAccesses/DiskAccess02
+Name : DiskAccess02
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:05:19 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup08/providers/Microsoft.Compute/diskAccesses/DiskAccess03
+Name : DiskAccess03
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+```
+
+This command gets the properties of all disk accesses under the subscription.
+
+### Example 4: Get all Disk Access using Wildcard Character
+```
+PS C:\> Get-AzDiskAccess -Name DiskAccessMicrosoft*
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:02:50 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccessMicrosoftAzure
+Name : DiskAccessMicrosoftAzure
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:05:19 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccessMicrosoftTeams
+Name : DiskAccessMicrosoftTeams
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+```
+
+This command gets the properties of all disk accesses under the subscription name starting with 'DiskAccessMicrosoft'.
+
+### Example 5: Get Disk Access using ResourceId.
+```
+PS C:\> Get-AzDiskAccess -ResourceId '/subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess01'
+
+PrivateEndpointConnections : {}
+ProvisioningState : Succeeded
+TimeCreated : 8/13/2020 7:02:50 PM
+Location : northcentralus
+Id : /subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess01
+Name : DiskAccess01
+Type : Microsoft.Compute/diskAccesses
+Tags : {}
+```
+
+This command gets the properties of a Disk Access with the given ResourceId.
+
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+Specifies the name of a disk access.
+
+```yaml
+Type: System.String
+Parameter Sets: DefaultParameterSet
+Aliases: diskAccessName
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: True
+```
+
+### -ResourceGroupName
+Specifies the name of a resource group.
+
+```yaml
+Type: System.String
+Parameter Sets: DefaultParameterSet
+Aliases:
+
+Required: False
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: True
+```
+
+### -ResourceId
+Resource ID for your disk access.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIDParameterSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Compute/Compute/help/New-AzDiskAccess.md b/src/Compute/Compute/help/New-AzDiskAccess.md
new file mode 100644
index 000000000000..d6373377e3a1
--- /dev/null
+++ b/src/Compute/Compute/help/New-AzDiskAccess.md
@@ -0,0 +1,152 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
+Module Name: Az.Compute
+schema: 2.0.0
+---
+
+# New-AzDiskAccess
+
+## SYNOPSIS
+Creates a Disk Access resource
+
+## SYNTAX
+
+```
+New-AzDiskAccess [-ResourceGroupName] [-Name] [-Location] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **New-AzDiskAccess** cmdlet creates a Disk Access resource
+
+## EXAMPLES
+
+### Example 1
+```
+PS C:\> New-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01" -Location "NorthCentralUS"
+```
+
+This command will create a Disk Access with given properties.
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Location
+Specifies the location.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -Name
+Specifies the name of a disk access.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases: DiskAccessName
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Specifies the name of a resource group.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Compute/Compute/help/New-AzDiskConfig.md b/src/Compute/Compute/help/New-AzDiskConfig.md
index a1b61132c125..483c58065c58 100644
--- a/src/Compute/Compute/help/New-AzDiskConfig.md
+++ b/src/Compute/Compute/help/New-AzDiskConfig.md
@@ -20,7 +20,8 @@ New-AzDiskConfig [[-SkuName] ] [[-OsType] ] [[-Dis
[-ImageReference ] [-GalleryImageReference ] [-SourceUri ]
[-SourceResourceId ] [-UploadSizeInBytes ] [-EncryptionSettingsEnabled ]
[-DiskEncryptionKey ] [-KeyEncryptionKey ]
- [-DiskEncryptionSetId ] [-EncryptionType ] [-DefaultProfile ]
+ [-DiskEncryptionSetId ] [-EncryptionType ] [DiskAccessId ]
+ [-NetworkAccessPolicy ] [-DefaultProfile ]
[-WhatIf] [-Confirm] []
```
@@ -229,6 +230,38 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -DiskAccessId
+Gets or sets ARM ID of the DiskAccess resource for using private endpoints on.
+
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkAccessPolicy
+Network access policy defines the network access policy.
+Possible values include: 'AllowAll', 'AllowPrivate', 'DenyAll'
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -EncryptionType
The type of key used to encrypt the data of the disk. Available values are: 'EncryptionAtRestWithPlatformKey', 'EncryptionAtRestWithCustomerKey'
diff --git a/src/Compute/Compute/help/New-AzDiskEncryptionSetConfig.md b/src/Compute/Compute/help/New-AzDiskEncryptionSetConfig.md
index d2b0b84c84cf..c4ef83c829d6 100644
--- a/src/Compute/Compute/help/New-AzDiskEncryptionSetConfig.md
+++ b/src/Compute/Compute/help/New-AzDiskEncryptionSetConfig.md
@@ -14,8 +14,8 @@ Creates a configurable disk encryption set object.
```
New-AzDiskEncryptionSetConfig [-Location] [[-Tag] ] [[-IdentityType] ]
- [[-SourceVaultId] ] [-KeyUrl ] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [[-SourceVaultId] ] [-KeyUrl ] [-EncryptionType ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -48,6 +48,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -EncryptionType
+Use this to set the encryption type of the disk encryption set. Available values are: 'EncryptionAtRestWithPlatformKey', 'EncryptionAtRestWithCustomerKey'.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -IdentityType
The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported.
diff --git a/src/Compute/Compute/help/New-AzDiskUpdateConfig.md b/src/Compute/Compute/help/New-AzDiskUpdateConfig.md
index 9fb539066a04..3d6a3722befc 100644
--- a/src/Compute/Compute/help/New-AzDiskUpdateConfig.md
+++ b/src/Compute/Compute/help/New-AzDiskUpdateConfig.md
@@ -13,11 +13,12 @@ Creates a configurable disk update object.
## SYNTAX
```
-New-AzDiskUpdateConfig [[-SkuName] ] [[-OsType] ] [[-DiskSizeGB] ]
- [[-Tag] ] [-DiskIOPSReadWrite ] [-DiskMBpsReadWrite ]
- [-EncryptionSettingsEnabled ] [-DiskEncryptionKey ]
- [-KeyEncryptionKey ] [-DiskEncryptionSetId ] [-EncryptionType ]
- [-DefaultProfile ] [-WhatIf] [-Confirm] []
+New-AzDiskUpdateConfig [[-SkuName] ] [-NetworkAccessPolicy ] [-DiskAccessId ]
+ [[-OsType] ] [[-DiskSizeGB] ] [[-Tag] ] [-DiskIOPSReadWrite ]
+ [-DiskMBpsReadWrite ] [-EncryptionSettingsEnabled ]
+ [-DiskEncryptionKey ] [-KeyEncryptionKey ]
+ [-DiskEncryptionSetId ] [-EncryptionType ] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -67,6 +68,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -DiskAccessId
+{{ Fill DiskAccessId Description }}
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -DiskEncryptionKey
Specifies the disk encryption key object on a disk.
@@ -187,6 +203,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -NetworkAccessPolicy
+{{ Fill NetworkAccessPolicy Description }}
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -OsType
Specifies the OS type.
diff --git a/src/Compute/Compute/help/New-AzSnapshotConfig.md b/src/Compute/Compute/help/New-AzSnapshotConfig.md
index ff9a8dfef6f7..ca357c8d9e0a 100644
--- a/src/Compute/Compute/help/New-AzSnapshotConfig.md
+++ b/src/Compute/Compute/help/New-AzSnapshotConfig.md
@@ -18,7 +18,8 @@ New-AzSnapshotConfig [[-SkuName] ] [[-OsType] ] [[
[-StorageAccountId ] [-ImageReference ] [-SourceUri ]
[-SourceResourceId ] [-EncryptionSettingsEnabled ]
[-DiskEncryptionKey ] [-KeyEncryptionKey ]
- [-DiskEncryptionSetId ] [-EncryptionType ] [-DefaultProfile ]
+ [-DiskEncryptionSetId ] [-EncryptionType ] [DiskAccessId ]
+ [-NetworkAccessPolicy ] [-DefaultProfile ]
[-WhatIf] [-Confirm] []
```
@@ -158,6 +159,37 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -DiskAccessId
+Gets or sets ARM id of the DiskAccess resource for using private endpoints on.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkAccessPolicy
+Network access policy defines the network access policy.
+Possible values include: 'AllowAll', 'AllowPrivate', 'DenyAll'
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -HyperVGeneration
The hypervisor generation of the Virtual Machine. Applicable to OS disks only. Allowed values are V1 and V2.
diff --git a/src/Compute/Compute/help/Remove-AzDiskAccess.md b/src/Compute/Compute/help/Remove-AzDiskAccess.md
new file mode 100644
index 000000000000..fdf0238bd6bf
--- /dev/null
+++ b/src/Compute/Compute/help/Remove-AzDiskAccess.md
@@ -0,0 +1,205 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
+Module Name: Az.Compute
+schema: 2.0.0
+---
+
+# Remove-AzDiskAccess
+
+## SYNOPSIS
+Removes a disk access resource.
+
+## SYNTAX
+
+### DefaultParameterSet (Default)
+```
+Remove-AzDiskAccess [-ResourceGroupName] [-Name] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIDParameterSet
+```
+Remove-AzDiskAccess [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### InputObjectParameterSet
+```
+Remove-AzDiskAccess [-InputObject] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+## DESCRIPTION
+The **Remove-AzDiskAccess** cmdlet removes a disk access resource.
+
+## EXAMPLES
+
+### Example 1: Remove Disk Access using Default Parameter Set
+```
+PS C:\> Remove-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01"
+```
+
+This command removes the disk access named "DiskAccess01" in resource group "ResourceGroup01"
+
+### Example 2: Remove Disk Access using Resource ID
+```
+PS C:\> $myDiskAccess = Get-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01"
+PS C:\> Remove-AzDiskAccess -ResourceId $myDiskAccess.id
+```
+
+This command removes the disk access by Resource ID
+
+### Example 3: Remove Disk Access using Input Object
+```
+PS C:\> $myDiskAccess = Get-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01"
+PS C:\> Remove-AzDiskAccess -InputObject $myDiskAccess
+```
+
+This command removes the disk access by InputObject
+
+### Example 4: Remove Disk Access by piping Input Object
+```
+PS C:\> Get-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01" | Remove-AzDiskAccess
+```
+
+This command removes the disk access by piping the InputObject
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+PowerShell Disk Access Object
+
+```yaml
+Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess
+Parameter Sets: InputObjectParameterSet
+Aliases: DiskAccess
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+```
+
+### -Name
+Specifies the name of a disk access.
+
+```yaml
+Type: System.String
+Parameter Sets: DefaultParameterSet
+Aliases: DiskAccessName
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Specifies the name of a resource group.
+
+```yaml
+Type: System.String
+Parameter Sets: DefaultParameterSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+Resource ID for your disk access.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIDParameterSet
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj
index 807a48470c51..29698d1ecbf4 100644
--- a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj
+++ b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj
@@ -5,6 +5,6 @@
-
+
\ No newline at end of file
diff --git a/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj b/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj
index 051e24318f44..eace577fe610 100644
--- a/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj
+++ b/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/Dns/Dns.Test/Dns.Test.csproj b/src/Dns/Dns.Test/Dns.Test.csproj
index 692f82e0d20c..de4bd70bc167 100644
--- a/src/Dns/Dns.Test/Dns.Test.csproj
+++ b/src/Dns/Dns.Test/Dns.Test.csproj
@@ -12,7 +12,7 @@
-
+
\ No newline at end of file
diff --git a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj
index 96aa2e2c4f40..79bc95e60453 100644
--- a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj
+++ b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj
@@ -1,4 +1,4 @@
-
+
HDInsight
@@ -16,7 +16,7 @@
-
+
diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs
index aafb69f570f6..2ab6d2d3d226 100644
--- a/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs
+++ b/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs
@@ -89,6 +89,7 @@ public void RunPsTestWorkFlow(Func scriptBuilder, System.Action cleanu
{
{"Microsoft.Resources", null},
{"Microsoft.Features", null},
+ {"Microsoft.Network", null},
{"Microsoft.Authorization", null}
};
diff --git a/src/HPCCache/HPCCache.Test/Fixtures/HpcCacheTestContext.cs b/src/HPCCache/HPCCache.Test/Fixtures/HpcCacheTestContext.cs
index e517b9bb0c50..551335193977 100644
--- a/src/HPCCache/HPCCache.Test/Fixtures/HpcCacheTestContext.cs
+++ b/src/HPCCache/HPCCache.Test/Fixtures/HpcCacheTestContext.cs
@@ -17,6 +17,7 @@ namespace Microsoft.Azure.Commands.HPCCache.Test.Fixtures
using System;
using System.Collections.Generic;
using System.Linq;
+ using Microsoft.Azure.Commands.HPCCache.Test.ScenarioTests;
using Microsoft.Azure.Commands.HPCCache.Test.Utilities;
using Microsoft.Azure.Management.Authorization;
using Microsoft.Azure.Management.Authorization.Models;
@@ -26,6 +27,7 @@ namespace Microsoft.Azure.Commands.HPCCache.Test.Fixtures
using Microsoft.Azure.Management.Network.Models;
using Microsoft.Azure.Management.StorageCache;
using Microsoft.Azure.Management.StorageCache.Models;
+ using Microsoft.Azure.Test.HttpRecorder;
using Microsoft.Rest.Azure;
using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
@@ -59,6 +61,7 @@ public HpcCacheTestContext(
[System.Runtime.CompilerServices.CallerMemberName]
string methodName = ".ctor")
{
+ HttpMockServer.Matcher = HpcCacheController.GetRecordMatcher();
this.mockContext = MockContext.Start(suiteObject, methodName);
this.RegisterSubscriptionForResource("Microsoft.StorageCache");
}
@@ -73,6 +76,7 @@ public HpcCacheTestContext(
[System.Runtime.CompilerServices.CallerMemberName]
string methodName = ".ctor")
{
+ HttpMockServer.Matcher = HpcCacheController.GetRecordMatcher();
this.mockContext = MockContext.Start(type.Name, methodName);
this.RegisterSubscriptionForResource("Microsoft.StorageCache");
}
diff --git a/src/HPCCache/HPCCache.Test/HPCCache.Test.csproj b/src/HPCCache/HPCCache.Test/HPCCache.Test.csproj
index eb44734f7e80..76af60b4e692 100644
--- a/src/HPCCache/HPCCache.Test/HPCCache.Test.csproj
+++ b/src/HPCCache/HPCCache.Test/HPCCache.Test.csproj
@@ -17,7 +17,7 @@
-
+
diff --git a/src/HPCCache/HPCCache.Test/ScenarioTests/HPCCacheController.cs b/src/HPCCache/HPCCache.Test/ScenarioTests/HPCCacheController.cs
index 46b94476606d..b82ccf7e83cc 100644
--- a/src/HPCCache/HPCCache.Test/ScenarioTests/HPCCacheController.cs
+++ b/src/HPCCache/HPCCache.Test/ScenarioTests/HPCCacheController.cs
@@ -85,6 +85,26 @@ public void RunPsTest(XunitTracingInterceptor logger, params string[] scripts)
logger.Information(string.Format("Test method finished: {0}.{1}", callingClassType, mockName));
}
+ ///
+ /// Gets storage management client.
+ ///
+ static public IRecordMatcher GetRecordMatcher()
+ {
+ var d = new Dictionary
+ {
+ { "Microsoft.Resources", null },
+ { "Microsoft.Features", null },
+ { "Microsoft.Authorization", null },
+ { "Microsoft.Network", null },
+ };
+ var providersToIgnore = new Dictionary
+ {
+ { "Microsoft.Azure.Management.Resources.ResourceManagementClient", "2016-02-01" },
+ { "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient", "2017-05-10" },
+ };
+ return new PermissiveRecordMatcherWithApiExclusion(true, d, providersToIgnore);
+ }
+
///
/// RunPsTestWorkflow.
///
@@ -103,18 +123,7 @@ protected void RunPsTestWorkflow(
Action initialize = null)
{
this.helper.TracingInterceptor = logger;
- var d = new Dictionary
- {
- { "Microsoft.Resources", null },
- { "Microsoft.Features", null },
- { "Microsoft.Authorization", null },
- };
- var providersToIgnore = new Dictionary
- {
- { "Microsoft.Azure.Management.Resources.ResourceManagementClient", "2016-02-01" },
- { "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient", "2017-05-10" },
- };
- HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(true, d, providersToIgnore);
+ HttpMockServer.Matcher = GetRecordMatcher();
HttpMockServer.RecordsDirectory = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "SessionRecords");
using (var context = new HpcCacheTestContext(callingClassType, mockName))
{
diff --git a/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj b/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj
index b22910daa6a8..2b8f5bd2860e 100644
--- a/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj
+++ b/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj
@@ -14,7 +14,7 @@
-
+
diff --git a/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs b/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs
index 073cc1531683..921f6f2af2ee 100644
--- a/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs
+++ b/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs
@@ -147,7 +147,6 @@ public void TestDeleteVault()
public void TestSetRemoveAccessPolicyByObjectId()
{
string upn = "";
- _data.ResetPreCreatedVault();
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
controller.RunPsTestWorkflow(
@@ -168,7 +167,6 @@ public void TestSetRemoveAccessPolicyByObjectId()
public void TestSetRemoveAccessPolicyByUPN()
{
string upn = "";
- _data.ResetPreCreatedVault();
KeyVaultManagementController.NewInstance.RunPsTestWorkflow(
_logger,
() =>
@@ -187,7 +185,6 @@ public void TestSetRemoveAccessPolicyByCompoundId()
{
string upn = "";
Guid? appId = null;
- _data.ResetPreCreatedVault();
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
controller.RunPsTestWorkflow(
@@ -211,7 +208,6 @@ public void TestRemoveAccessPolicyWithCompoundIdPolicies()
Guid? appId1 = null;
Guid? appId2 = null;
- _data.ResetPreCreatedVault();
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
controller.RunPsTestWorkflow(
@@ -233,7 +229,6 @@ public void TestSetCompoundIdAccessPolicy()
{
string upn = "";
Guid? appId = null;
- _data.ResetPreCreatedVault();
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
controller.RunPsTestWorkflow(
@@ -257,7 +252,6 @@ public void TestSetRemoveAccessPolicyBySPN()
ServicePrincipal principal = null;
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
- _data.ResetPreCreatedVault();
controller.RunPsTestWorkflow(
_logger,
//script builder
@@ -288,7 +282,6 @@ public void TestModifyAccessPolicy()
string upn = "";
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
- _data.ResetPreCreatedVault();
controller.RunPsTestWorkflow(
_logger,
@@ -310,7 +303,6 @@ public void TestModifyAccessPolicyEnabledForDeployment()
{
string upn = "";
- _data.ResetPreCreatedVault();
KeyVaultManagementController.NewInstance.RunPsTestWorkflow(
_logger,
() =>
@@ -330,7 +322,6 @@ public void TestModifyAccessPolicyEnabledForTemplateDeployment()
{
string upn = "";
- _data.ResetPreCreatedVault();
KeyVaultManagementController.NewInstance.RunPsTestWorkflow(
_logger,
() =>
@@ -349,7 +340,6 @@ public void TestModifyAccessPolicyEnabledForDiskEncryption()
{
string upn = "";
- _data.ResetPreCreatedVault();
KeyVaultManagementController.NewInstance.RunPsTestWorkflow(
_logger,
() =>
@@ -367,14 +357,11 @@ public void TestModifyAccessPolicyEnabledForDiskEncryption()
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestModifyAccessPolicyNegativeCases()
{
- string upn = "";
-
- _data.ResetPreCreatedVault();
KeyVaultManagementController.NewInstance.RunPsTestWorkflow(
_logger,
() =>
{
- return new[] { string.Format("{0} {1} {2} {3}", "Test-ModifyAccessPolicyNegativeCases", _data.PreCreatedVault, _data.ResourceGroupName, upn) };
+ return new[] { "Test-ModifyAccessPolicyNegativeCases" };
},
null,
MethodBase.GetCurrentMethod().ReflectedType?.ToString(),
@@ -387,7 +374,6 @@ public void TestModifyAccessPolicyNegativeCases()
public void TestRemoveNonExistentAccessPolicyDoesNotThrow()
{
string upn = "";
- _data.ResetPreCreatedVault();
KeyVaultManagementController controller = KeyVaultManagementController.NewInstance;
controller.RunPsTestWorkflow(
diff --git a/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs b/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs
index 2e1583604b5e..7f7b1841dd9e 100644
--- a/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs
+++ b/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs
@@ -12,25 +12,13 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Management.KeyVault;
-using Microsoft.Azure.Management.KeyVault.Models;
-using Microsoft.Azure.Test.HttpRecorder;
-using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using Microsoft.Azure.Management.Internal.Resources;
-using Microsoft.Azure.Management.Internal.Resources.Models;
-using Sku = Microsoft.Azure.Management.KeyVault.Models.Sku;
namespace Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests
{
public class KeyVaultTestFixture : RMTestBase, IDisposable
{
- private readonly HttpRecorderMode _mode;
-
public string TagName { get; set; } = "testtag";
public string TagValue { get; set; } = "testvalue";
@@ -38,118 +26,18 @@ public class KeyVaultTestFixture : RMTestBase, IDisposable
public string Location { get; set; }
public string PreCreatedVault { get; set; }
- private bool _initialized;
public KeyVaultTestFixture()
{
- // Initialize has bug which causes null reference exception
- HttpMockServer.FileSystemUtilsObject = new FileSystemUtils();
- _mode = HttpMockServer.GetCurrentMode();
}
public void Initialize(string className)
{
- if (_initialized)
- return;
-
- if (_mode == HttpRecorderMode.Record)
- {
- using (MockContext context = MockContext.Start(new StackTrace().GetFrame(1).GetMethod().ReflectedType?.ToString(), new StackTrace().GetFrame(1).GetMethod().Name))
- {
- var resourcesClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
- var mgmtClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
- var tenantId = TestEnvironmentFactory.GetTestEnvironment().Tenant;
-
- //Figure out which locations are available for Key Vault
- Location = GetKeyVaultLocation(resourcesClient);
-
- //Create a resource group in that location
- PreCreatedVault = TestUtilities.GenerateName("pshtestvault");
- ResourceGroupName = TestUtilities.GenerateName("pshtestrg");
-
- resourcesClient.ResourceGroups.CreateOrUpdate(ResourceGroupName, new ResourceGroup { Location = Location });
- CreateVault(mgmtClient, Location, tenantId);
- }
- }
-
- _initialized = true;
- }
-
- private static string GetKeyVaultLocation(ResourceManagementClient resourcesClient)
- {
- var provider = resourcesClient.Providers.Get("Microsoft.KeyVault");
- var location = provider.ResourceTypes.First(resType => resType.ResourceType.Contains("vaults")).Locations.FirstOrDefault();
- return location?.ToLowerInvariant().Replace(" ", "");
+ // no op
}
- private void CreateVault(KeyVaultManagementClient mgmtClient, string location, string tenantId)
- {
- mgmtClient.Vaults.CreateOrUpdate(
- ResourceGroupName,
- PreCreatedVault,
- new VaultCreateOrUpdateParameters
- {
- Location = location,
- Tags = new Dictionary { { TagName, TagValue } },
- Properties = new VaultProperties
- {
- EnabledForDeployment = false,
- Sku = new Sku { Name = SkuName.Premium },
- TenantId = Guid.Parse(tenantId),
- VaultUri = "",
- AccessPolicies = new AccessPolicyEntry[]{ }
- }
- });
- }
-
- public void ResetPreCreatedVault()
- {
- if (_mode == HttpRecorderMode.Record)
- {
- using (MockContext context = MockContext.Start(new StackTrace().GetFrame(1).GetMethod().ReflectedType?.ToString(), new StackTrace().GetFrame(1).GetMethod().Name))
- {
- var mgmtClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
- var tenantId = Guid.Parse(TestEnvironmentFactory.GetTestEnvironment().Tenant);
-
- var policies = new AccessPolicyEntry[] { };
-
- mgmtClient.Vaults.CreateOrUpdate(
- ResourceGroupName,
- PreCreatedVault,
- new VaultCreateOrUpdateParameters
- {
- Location = Location,
- Tags = new Dictionary { { TagName, TagValue } },
- Properties = new VaultProperties
- {
- EnabledForDeployment = false,
- Sku = new Sku { Name = SkuName.Premium },
- TenantId = tenantId,
- VaultUri = "",
- AccessPolicies = policies
- }
- });
- }
- }
- }
public void Dispose()
{
- Dispose(false);
GC.SuppressFinalize(this);
}
-
- protected virtual void Dispose(bool disposing)
- {
- if (disposing)
- {
- if (_mode == HttpRecorderMode.Record && _initialized)
- {
- using (MockContext context = MockContext.Start(new StackTrace().GetFrame(1).GetMethod().ReflectedType?.ToString(), new StackTrace().GetFrame(1).GetMethod().Name))
- {
- var resourcesClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
- resourcesClient.ResourceGroups.Delete(ResourceGroupName);
- }
- }
- }
- }
}
}
diff --git a/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 b/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1
index c0b706d6d8d6..d39ac9751819 100644
--- a/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1
+++ b/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1
@@ -113,6 +113,8 @@ function Test-CreateNewVault {
# Soft delete and purge protection defaults to true
Assert-True { $actual.EnableSoftDelete } "By default EnableSoftDelete should be true"
Assert-Null $actual.EnablePurgeProtection "By default EnablePurgeProtection should be null"
+ # RbacAuthorization defaults to false
+ Assert-False { $actual.EnableRbacAuthorization } "By default EnableRbacAuthorization should be false"
# Default retention days
Assert-AreEqual 90 $actual.SoftDeleteRetentionInDays "By default SoftDeleteRetentionInDays should be 90"
@@ -137,6 +139,10 @@ function Test-CreateNewVault {
Assert-True { $actual.EnablePurgeProtection } "If -EnablePurgeProtection, EnablePurgeProtection should be null"
Assert-AreEqual 10 $actual.SoftDeleteRetentionInDays "SoftDeleteRetentionInDays should be the same value as set"
+ # Test enable RbacAuthorization
+ $actual = New-AzKeyVault -VaultName (getAssetName) -ResourceGroupName $rgName -Location $vaultLocation -EnableRbacAuthorization
+ Assert-True { $actual.EnableRbacAuthorization } "If specified, EnableRbacAuthorization should be true"
+
# # Test use -DisableSoftDelete -EnablePurgeProtection together (TODO: uncomment this assert after keyvault team deploys their fix)
# Assert-Throws { New-AzKeyVault -VaultName (getAssetName) -ResourceGroupName $rgName -Location $vaultLocation -Sku standard -DisableSoftDelete -EnablePurgeProtection }
@@ -693,20 +699,32 @@ function Test-ModifyAccessPolicyEnabledForDiskEncryption {
}
function Test-ModifyAccessPolicyNegativeCases {
- Param($existingVaultName, $rgName, $objId)
+ $objId = "" # INTENTIONAL
+ $rgName = getAssetName
+ $vaultName = getAssetName
+ $rgLocation = Get-Location "Microsoft.Resources" "resourceGroups" "West US"
+ $vaultLocation = Get-Location "Microsoft.KeyVault" "vault" "West US"
+ New-AzResourceGroup -Name $rgName -Location $rgLocation
- # random string in perms
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PermissionsToSecrets blah, get }
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PermissionsToCertificates blah, get }
-
- # invalid set of params
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName }
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName }
- Assert-Throws { Remove-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName }
- Assert-Throws { Remove-AzKeyVaultAccessPolicy -VaultName $existingVaultName }
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -UserPrincipalName $objId }
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -SPN $objId }
- Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId }
+ try {
+ New-AzKeyVault -Name $vaultName -ResourceGroupName $rgName -Location $vaultLocation
+
+ # random string in perms
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PermissionsToSecrets blah, get }
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PermissionsToCertificates blah, get }
+
+ # invalid set of params
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName }
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName }
+ Assert-Throws { Remove-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName }
+ Assert-Throws { Remove-AzKeyVaultAccessPolicy -VaultName $existingVaultName }
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -UserPrincipalName $objId }
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -SPN $objId }
+ Assert-Throws { Set-AzKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId }
+ }
+ finally {
+ Remove-AzResourceGroup -Name $rgName -Force
+ }
}
function Test-RemoveNonExistentAccessPolicyDoesNotThrow {
@@ -798,6 +816,15 @@ function Test-UpdateKeyVault {
# Assert-Throws { $vault = $vault | Update-AzKeyVault -EnablePurgeProtection }
# # Retention cannot be updated once set
# Assert-Throws { $vault = $vault | Update-AzKeyVault -SoftDeleteRetentionInDays 80}
+
+ #Set EnableRbacAuthorization true
+ $vault = $vault | Update-AzKeyVault -EnableRbacAuthorization $true
+ Assert-True { $vault.EnableRbacAuthorization } "5. EnableRbacAuthorization should be true"
+
+ #Set EnableRbacAuthorization false
+ $vault = $vault | Update-AzKeyVault -EnableRbacAuthorization $false
+ Assert-False { $vault.EnableRbacAuthorization } "6. EnableRbacAuthorization should be false"
+
}
finally {
$rg | Remove-AzResourceGroup -Force
diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json
index 7f5e0976e58f..db41d5aaced7 100644
--- a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json
+++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5864bf4-6929-49da-ac78-913775575c9c"
+ "2134f539-bdcf-41cc-8fed-b51d22add3b1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -30,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "9b08834d-9b04-465f-bfba-8b44f924b8e3"
+ "34582b7d-b31a-4f61-9986-36016866c575"
],
"x-ms-correlation-request-id": [
- "9b08834d-9b04-465f-bfba-8b44f924b8e3"
+ "34582b7d-b31a-4f61-9986-36016866c575"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084331Z:9b08834d-9b04-465f-bfba-8b44f924b8e3"
+ "KOREASOUTH:20200722T050059Z:34582b7d-b31a-4f61-9986-36016866c575"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:43:31 GMT"
+ "Wed, 22 Jul 2020 05:00:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,10 +54,10 @@
"-1"
],
"Content-Length": [
- "10303"
+ "10899"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
@@ -67,16 +67,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0e320d7-c0fb-463d-acd6-f745f5a4258a"
+ "a9c1515f-7359-4bff-974e-fe4e07e1c834"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"11998"
],
"x-ms-request-id": [
- "84491f29-6632-4dbe-b614-2696beb4066a"
+ "4bf0e9b4-115e-4a05-ad26-081bfcba6cb6"
],
"x-ms-correlation-request-id": [
- "84491f29-6632-4dbe-b614-2696beb4066a"
+ "4bf0e9b4-115e-4a05-ad26-081bfcba6cb6"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084332Z:84491f29-6632-4dbe-b614-2696beb4066a"
+ "KOREASOUTH:20200722T050059Z:4bf0e9b4-115e-4a05-ad26-081bfcba6cb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,7 +105,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:43:31 GMT"
+ "Wed, 22 Jul 2020 05:00:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -114,29 +114,29 @@
"-1"
],
"Content-Length": [
- "5958"
+ "6417"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\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 \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\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 \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps9141?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzOTE0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps7119?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNzExOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b22e31a1-9c77-4b53-a769-df0e52aefe26"
+ "e0e981ab-8661-432d-9fbe-65efc0879e67"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -156,13 +156,13 @@
"1199"
],
"x-ms-request-id": [
- "fcf94ae6-34dd-40fc-81f5-7bb32894b185"
+ "7d80fb93-e691-4226-80fb-13cabb8e351d"
],
"x-ms-correlation-request-id": [
- "fcf94ae6-34dd-40fc-81f5-7bb32894b185"
+ "7d80fb93-e691-4226-80fb-13cabb8e351d"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084336Z:fcf94ae6-34dd-40fc-81f5-7bb32894b185"
+ "KOREASOUTH:20200722T050102Z:7d80fb93-e691-4226-80fb-13cabb8e351d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +171,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:43:36 GMT"
+ "Wed, 22 Jul 2020 05:01:02 GMT"
],
"Content-Length": [
"165"
@@ -183,7 +183,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141\",\r\n \"name\": \"ps9141\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119\",\r\n \"name\": \"ps7119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -193,16 +193,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8cbc95df-8636-4c14-a69c-691c7cace503"
+ "8210dd29-814f-45d1-86c3-2413610be30a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -216,13 +216,13 @@
"11997"
],
"x-ms-request-id": [
- "c45063bb-2de9-439d-bdd8-b4d73f25ee07"
+ "dbbed331-edb1-4de0-bdf7-b3ccca890304"
],
"x-ms-correlation-request-id": [
- "c45063bb-2de9-439d-bdd8-b4d73f25ee07"
+ "dbbed331-edb1-4de0-bdf7-b3ccca890304"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084336Z:c45063bb-2de9-439d-bdd8-b4d73f25ee07"
+ "KOREASOUTH:20200722T050102Z:dbbed331-edb1-4de0-bdf7-b3ccca890304"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +231,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:43:36 GMT"
+ "Wed, 22 Jul 2020 05:01:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -240,10 +240,10 @@
"-1"
],
"Content-Length": [
- "961"
+ "273"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg8573/providers/Microsoft.KeyVault/vaults/pshtestvault7940\",\r\n \"name\": \"pshtestvault7940\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg630/providers/Microsoft.KeyVault/vaults/pshtestvault7820\",\r\n \"name\": \"pshtestvault7820\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -253,16 +253,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "782edfdd-8a5e-44c3-9d74-1bf98dbb7f74"
+ "82710114-c6c6-4847-9e86-ab61d833bf0e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -276,13 +276,13 @@
"11996"
],
"x-ms-request-id": [
- "56273f8f-d89e-4d7f-88fd-bc300f91ed8e"
+ "2b0ae97e-2c97-4c31-8fd0-68c08fd5a38e"
],
"x-ms-correlation-request-id": [
- "56273f8f-d89e-4d7f-88fd-bc300f91ed8e"
+ "2b0ae97e-2c97-4c31-8fd0-68c08fd5a38e"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084414Z:56273f8f-d89e-4d7f-88fd-bc300f91ed8e"
+ "KOREASOUTH:20200722T050141Z:2b0ae97e-2c97-4c31-8fd0-68c08fd5a38e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -291,7 +291,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:13 GMT"
+ "Wed, 22 Jul 2020 05:01:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -300,10 +300,10 @@
"-1"
],
"Content-Length": [
- "920"
+ "233"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -313,16 +313,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9f783ff-8bfb-4ff0-8289-cacc8c88e959"
+ "ece032d6-92a8-45e4-b68c-0d06695b2f2e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -336,13 +336,13 @@
"11995"
],
"x-ms-request-id": [
- "d45a901c-f805-4559-9ef6-68ef4ae3e01c"
+ "41f3380a-1341-4aa5-a3f7-32480043efc6"
],
"x-ms-correlation-request-id": [
- "d45a901c-f805-4559-9ef6-68ef4ae3e01c"
+ "41f3380a-1341-4aa5-a3f7-32480043efc6"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084450Z:d45a901c-f805-4559-9ef6-68ef4ae3e01c"
+ "KOREASOUTH:20200722T050216Z:41f3380a-1341-4aa5-a3f7-32480043efc6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -351,7 +351,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:50 GMT"
+ "Wed, 22 Jul 2020 05:02:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -360,10 +360,10 @@
"-1"
],
"Content-Length": [
- "1127"
+ "434"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -373,16 +373,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f82ad3bd-c1e3-4008-8a8c-de99c0f29790"
+ "962b0953-b69a-4383-aeec-6c7a4ab14cec"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -396,13 +396,13 @@
"11994"
],
"x-ms-request-id": [
- "c40a6d03-1e9c-4d42-a5a8-dcbd0c541865"
+ "af7d8894-1c37-43b1-a10d-fe2e67c58f2d"
],
"x-ms-correlation-request-id": [
- "c40a6d03-1e9c-4d42-a5a8-dcbd0c541865"
+ "af7d8894-1c37-43b1-a10d-fe2e67c58f2d"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084525Z:c40a6d03-1e9c-4d42-a5a8-dcbd0c541865"
+ "KOREASOUTH:20200722T050251Z:af7d8894-1c37-43b1-a10d-fe2e67c58f2d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -411,7 +411,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:45:24 GMT"
+ "Wed, 22 Jul 2020 05:02:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -420,10 +420,10 @@
"-1"
],
"Content-Length": [
- "1334"
+ "641"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391\",\r\n \"name\": \"ps8391\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -433,16 +433,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a072deb5-eda9-45b1-a2a5-c918195bb4c0"
+ "e25f2fcf-0f8e-4c2e-93be-5ac29d21092d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -456,13 +456,13 @@
"11993"
],
"x-ms-request-id": [
- "6761b562-c892-4732-a752-d78137a2960a"
+ "35b623ff-8a3b-48b5-abaa-5ef7538ff1af"
],
"x-ms-correlation-request-id": [
- "6761b562-c892-4732-a752-d78137a2960a"
+ "35b623ff-8a3b-48b5-abaa-5ef7538ff1af"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084602Z:6761b562-c892-4732-a752-d78137a2960a"
+ "KOREASOUTH:20200722T050331Z:35b623ff-8a3b-48b5-abaa-5ef7538ff1af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -471,7 +471,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:02 GMT"
+ "Wed, 22 Jul 2020 05:03:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -480,10 +480,10 @@
"-1"
],
"Content-Length": [
- "1541"
+ "848"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391\",\r\n \"name\": \"ps8391\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595\",\r\n \"name\": \"ps9595\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661\",\r\n \"name\": \"ps8661\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -493,16 +493,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19482bc1-5381-49d1-aefc-9de992db6259"
+ "3872be06-a4dc-400b-85a6-88514ea33e5d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -516,13 +516,13 @@
"11992"
],
"x-ms-request-id": [
- "596a208b-6c3a-458a-b1c5-905a15342d5d"
+ "f0549dd8-c0fd-4a7e-b06c-80b6eb1cb198"
],
"x-ms-correlation-request-id": [
- "596a208b-6c3a-458a-b1c5-905a15342d5d"
+ "f0549dd8-c0fd-4a7e-b06c-80b6eb1cb198"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084636Z:596a208b-6c3a-458a-b1c5-905a15342d5d"
+ "KOREASOUTH:20200722T050407Z:f0549dd8-c0fd-4a7e-b06c-80b6eb1cb198"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -531,7 +531,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:36 GMT"
+ "Wed, 22 Jul 2020 05:04:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -540,10 +540,10 @@
"-1"
],
"Content-Length": [
- "1748"
+ "1055"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps3830\",\r\n \"name\": \"ps3830\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391\",\r\n \"name\": \"ps8391\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595\",\r\n \"name\": \"ps9595\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661\",\r\n \"name\": \"ps8661\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -553,16 +553,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f859bb2a-8fe1-43c3-b6f4-d642343d5161"
+ "1a429a43-51cf-4bee-8396-e6950da25a81"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -576,13 +576,13 @@
"11991"
],
"x-ms-request-id": [
- "8d6204f1-81ad-4ad4-acb9-1a1c53064760"
+ "e2ad18ba-2614-49bd-a90c-4b40c73b00db"
],
"x-ms-correlation-request-id": [
- "8d6204f1-81ad-4ad4-acb9-1a1c53064760"
+ "e2ad18ba-2614-49bd-a90c-4b40c73b00db"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084636Z:8d6204f1-81ad-4ad4-acb9-1a1c53064760"
+ "KOREASOUTH:20200722T050440Z:e2ad18ba-2614-49bd-a90c-4b40c73b00db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -591,7 +591,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:36 GMT"
+ "Wed, 22 Jul 2020 05:04:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,10 +600,70 @@
"-1"
],
"Content-Length": [
- "1748"
+ "1262"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps3830\",\r\n \"name\": \"ps3830\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391\",\r\n \"name\": \"ps8391\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595\",\r\n \"name\": \"ps9595\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps2106\",\r\n \"name\": \"ps2106\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661\",\r\n \"name\": \"ps8661\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97a4b9d6-7e07-47a3-baca-95c6887a3cca"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "160a94ad-0025-440b-8140-d0ad289e11d4"
+ ],
+ "x-ms-correlation-request-id": [
+ "160a94ad-0025-440b-8140-d0ad289e11d4"
+ ],
+ "x-ms-routing-request-id": [
+ "KOREASOUTH:20200722T050441Z:160a94ad-0025-440b-8140-d0ad289e11d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 22 Jul 2020 05:04:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1262"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps2106\",\r\n \"name\": \"ps2106\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661\",\r\n \"name\": \"ps8661\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -613,16 +673,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ae19385-70ab-4857-8309-6744d2bc8c67"
+ "e5a1da4f-bb93-46af-955b-49575086b6f6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -633,28 +693,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "eP0lALx/jM1Zuz6z/jUXLAMl+rLZcP1DXunbpjCnmnU="
+ "foZ9yagtN6DLE64X8eBN7xD70MEBkJUHaaIx6SRzWbI="
],
"request-id": [
- "c2b55501-5677-4435-ad99-91ce95a6c69e"
+ "bb6e3d76-b90f-406c-8e39-fde58b1986c0"
],
"client-request-id": [
- "0ae19385-70ab-4857-8309-6744d2bc8c67"
+ "e5a1da4f-bb93-46af-955b-49575086b6f6"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "3hMdZlSliWiYiq99CCVH1kvIBHOZawDKmEvZDO3HhyYTigMhS7sHpDYwseL_37HLSyGXZ2adpoC3UOUEoLdxqAO1gMMiTnZ1p90X4NiE_sLrpxS-CUCEbdNEanMTRQ8t.CneZ6millE0P7PdblsxcM7ZIjHUHmpgVe7yXdgGhotw"
+ "sGElO2ZA1LfRTUNTEWLQVB1u25mIdo1VpIDB1t2MShFS2m1MeajOFHsUkWo7jBSEA1d_-gY4HtIr18-VcSzsSh-6wn0iUqn505Dslq3X-CgBoc_TPvv2PywoFo-tlR4D.ZmybYX7NzIJN2iroXi15Zhk1VVl1KlQfhmK1cx30-AU"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "358518"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -662,23 +722,26 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "355942"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:43:35 GMT"
+ "Wed, 22 Jul 2020 05:01:02 GMT"
+ ],
+ "Content-Length": [
+ "219"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"c2b55501-5677-4435-ad99-91ce95a6c69e\",\r\n \"date\": \"2020-04-14T08:43:36\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"bb6e3d76-b90f-406c-8e39-fde58b1986c0\",\r\n \"date\": \"2020-07-22T05:01:02\"\r\n }\r\n}",
"StatusCode": 403
},
{
@@ -688,16 +751,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34f35c4b-cdac-4fd8-9997-525ce9ad701a"
+ "d2eb5e3f-698f-47a9-9d42-7548a495bc43"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -708,28 +771,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "mWUJuGpqapy7ttNC0UGCYze0snyn43E3dkj6imYiFHg="
+ "RsbLc/Qh2KIK0tS7+vqHnm45/dfusF7ydNApqcdabOQ="
],
"request-id": [
- "0f5cdff9-b34e-4113-879f-38de7c0c25ad"
+ "6fe49154-a49c-4b0c-97e4-924dd2f57d89"
],
"client-request-id": [
- "34f35c4b-cdac-4fd8-9997-525ce9ad701a"
+ "d2eb5e3f-698f-47a9-9d42-7548a495bc43"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "6RWXVU0hFP36mj0aIswz75ecWh2Ay-yjqBAccdze5QWMC2-hTsf2cwnpsoWbEWKADLDAZmUtPKLBXrZtcipdFigw2OaSjNdEcD-wvYMKOEg1_AuNbURFDcAeW_R7tHuh.D3rVEawXzY8xqLphGHJHyiMxKT1bqwJtJ3T0Suxyva0"
+ "ZlHyp9BYyr-7955qo4Cehq3uVlANAZno1DLDQkSWZ2icwmeeQdRFBNB3u6lmx-XcBPW_b1qNwl3JII3THIF02s53lwLojjKZgAMsqMpnHfmm1JPEivucd3SqSw9q95Ff.ymYERMg9wKayP_bozlq6bFTzkZDvIk0hQOiDl3FJesM"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "2043276"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -737,23 +800,26 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "316063"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:13 GMT"
+ "Wed, 22 Jul 2020 05:01:41 GMT"
+ ],
+ "Content-Length": [
+ "219"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"0f5cdff9-b34e-4113-879f-38de7c0c25ad\",\r\n \"date\": \"2020-04-14T08:44:14\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"6fe49154-a49c-4b0c-97e4-924dd2f57d89\",\r\n \"date\": \"2020-07-22T05:01:42\"\r\n }\r\n}",
"StatusCode": 403
},
{
@@ -763,16 +829,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0dd726b-2e10-469c-bd4a-f580545d176a"
+ "eb82b642-209b-471e-83a6-31c8f92cb932"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -783,28 +849,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "d6NM1IZJ997ei7F0TPggyhbJkEyMDvSXtLmQ273EPSs="
+ "5hJUifIGQ9N8eqxa04uwpd490wXLbSAzr55dZ6IW4Mw="
],
"request-id": [
- "bcb4b5d6-b076-4cc6-8d8e-c1847a6cf507"
+ "ae90d5e0-e151-46a1-825b-7efda51bde17"
],
"client-request-id": [
- "a0dd726b-2e10-469c-bd4a-f580545d176a"
+ "eb82b642-209b-471e-83a6-31c8f92cb932"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "DCVmPlyeyZyOHwctGZEqN9nAb_CrbzhMj-R0nizmP4y2SDFt_9UcaQpkS7pUx39ET1NsJTGaAc-UI9eMrXN82_BwWSl0HFzrj_F4uCS-SVxdTKpDCbxPBSG58oCqFsGm.NLMkm0NqA1juJhzlNA3yUhBVtd-K6h2q7Y-h0LTRN9Y"
+ "BFRHf9YIP7FgP0TzrhlDds-1AH0DKRFCzM-KmJ7VUHiM-r10tsXzdHsC18W0mqzLxRk76R4d1B6HvCKW8hYDqbg6VDPdS9VIOQIEWlmGVbq0-6ZERjvfn105JKd9THhI.fzUe_g5E_AmN_6zaeJOvPnrmp_2VwBi4OKtbWkBFDGM"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "354864"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -812,23 +878,26 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "333802"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:49 GMT"
+ "Wed, 22 Jul 2020 05:02:16 GMT"
+ ],
+ "Content-Length": [
+ "219"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"bcb4b5d6-b076-4cc6-8d8e-c1847a6cf507\",\r\n \"date\": \"2020-04-14T08:44:50\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"ae90d5e0-e151-46a1-825b-7efda51bde17\",\r\n \"date\": \"2020-07-22T05:02:16\"\r\n }\r\n}",
"StatusCode": 403
},
{
@@ -838,16 +907,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a0d516e-421c-44fc-904d-7adf7d32ffdd"
+ "ddc85613-dac3-4676-a186-3a1c38ababe0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -858,28 +927,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "2spmERui020U0wyPwT2WvmOHlKP53R5wAyXGA8Fut44="
+ "tJBqId5fL676KvTHtdqmK5adUuPsJcG3DpnqRumeI2A="
],
"request-id": [
- "92ae676e-c98d-4526-90e4-0e7dd3fbc60e"
+ "3d05c37c-3bea-4c7f-9c63-1b0fdd0f58d4"
],
"client-request-id": [
- "0a0d516e-421c-44fc-904d-7adf7d32ffdd"
+ "ddc85613-dac3-4676-a186-3a1c38ababe0"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "BmnPbYvlCerroKAFqka59mIyITmNO669xbVL_ygvLs8REKrYD1vZrbRl_-fxVXM13iB_gMfuprdlSiU_2rHzaRc38Aihz5Fgnhm9ELvawwWn9oYIJgpqW4EoKLsWc-Kk.v-fiu4IuaH0m5OKOGGPHMtkoIt17imBsHQ97UeNOvQw"
+ "VzRO1q49tJDFZ3lWXDwh5AiD9Oejy2NqhqgFrqGnHj1oF-TfZ9cqR8WHZUU-dXdaxXLv2XMUoEdXCSZehCt6-hVVoSR8rzmEPei3b5UX4ng_jEsKOKuxqHYGeEO2N_QE.yRUSTR7YYeLeGxMrpSVRDf1feOokSv5OM2bo0TC5LY0"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "708208"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -887,23 +956,26 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "340461"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:45:25 GMT"
+ "Wed, 22 Jul 2020 05:02:51 GMT"
+ ],
+ "Content-Length": [
+ "219"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"92ae676e-c98d-4526-90e4-0e7dd3fbc60e\",\r\n \"date\": \"2020-04-14T08:45:25\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"3d05c37c-3bea-4c7f-9c63-1b0fdd0f58d4\",\r\n \"date\": \"2020-07-22T05:02:51\"\r\n }\r\n}",
"StatusCode": 403
},
{
@@ -913,16 +985,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "949f570a-cdb2-4ded-8f14-f7fe3d15b78f"
+ "430c6992-e27d-49e2-a452-1bbc7551700f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -933,28 +1005,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "MFTw5jJd4BQwRXIhV5CL538p5nSl8Igqe/H9doOe6bA="
+ "GtYwMLVHAEzeuEctPm+RLFgoYSMvFlliaEMYpEds1IQ="
],
"request-id": [
- "95564a5a-2d85-43a2-b941-c29c2f6376ea"
+ "047bbf20-1b72-4299-8442-bdaf9c5a9def"
],
"client-request-id": [
- "949f570a-cdb2-4ded-8f14-f7fe3d15b78f"
+ "430c6992-e27d-49e2-a452-1bbc7551700f"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "lYgUUbZSdLU-RiliX1RDUo1bIr6dv8tUqI0V4Nqx_adE27aROZNZTid8Y_uE63AN0Bwtj-LPXHiaPnaMhQfpRfadIQeNJmfN4X2Zl2Zj2uNsIGQQwjBbSjH6RoCbSjgk.H7FqGSPGRgS4ai6ObQEzPXd7cxwsDlG4TN4Rs5NEVtQ"
+ "cDcY4liZvozD-StUuniO6Ctc5UUD00RbLcivDifxOKFGgrf82-DLVWKQ6BFnR_hOFFTkFuWSCS2aJAbQMSR8zFeg34IisvZyq2tlYhoK-J0lCj3rd2oU_UofxmpMQlJI.mr8LIyb5sJTuKNDalzcv3_G6BtJjiM3UZ8eN4NW4tDw"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "405085"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -962,23 +1034,26 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "362043"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:01 GMT"
+ "Wed, 22 Jul 2020 05:03:31 GMT"
+ ],
+ "Content-Length": [
+ "219"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"95564a5a-2d85-43a2-b941-c29c2f6376ea\",\r\n \"date\": \"2020-04-14T08:46:02\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"047bbf20-1b72-4299-8442-bdaf9c5a9def\",\r\n \"date\": \"2020-07-22T05:03:32\"\r\n }\r\n}",
"StatusCode": 403
},
{
@@ -988,16 +1063,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4901c8b3-bae5-4b0a-8f07-ada7db84590f"
+ "a9c6f9f4-1d58-480b-a9b0-00f86f3f5d6a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1008,40 +1083,121 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "vMmvMbsFR3fjcrwzuQ4+/PQedCMEjSBx0JpHKePLH8g="
+ "YqQrz+K+/7qEtPWdRB0Ke/N81EHH5YkCURtT6DikJos="
],
"request-id": [
- "a9e54584-e32f-4d4d-ba6b-cb132577f5f4"
+ "eab7b592-e2c7-4330-84c9-78b3a58d8d37"
],
"client-request-id": [
- "4901c8b3-bae5-4b0a-8f07-ada7db84590f"
+ "a9c6f9f4-1d58-480b-a9b0-00f86f3f5d6a"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "7jGhS10mO_WgJnHu8yVHS4s2j0eUV2MVV_07ZIn6tVY5V9ioWI0tFLJO4i11i4NBFuEGLE5KNvUBet0zY3bzaS1W2RZNf5z4TOrQX5YvIkK2v0nlVYXQ6bk_rhSbRaMP.vC4Zx1sUIht7XhjRKdhz48CfhxTC6sERYBcJMa6aNKU"
+ "QjpCG8kVpCZaYtrEBgzVYDDOV453uBcQ7V0xioegmcCZIolHSi4b67Fw13GqcuaGSwsHkfZqQnZxYoj6toDrLfJvUyDEqF56k5bQFRIZZ_9q2xka8JgkM6kuXdD1sbDh.yftCMN5mdQlv-siZ1zHO4TUML7A0Z-aNvlUBV-xRqVs"
+ ],
+ "Duration": [
+ "496557"
+ ],
+ "x-ms-resource-unit": [
+ "2"
],
"DataServiceVersion": [
"3.0;"
],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Access-Control-Allow-Origin": [
"*"
],
+ "Date": [
+ "Wed, 22 Jul 2020 05:04:06 GMT"
+ ],
+ "Content-Length": [
+ "219"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"eab7b592-e2c7-4330-84c9-78b3a58d8d37\",\r\n \"date\": \"2020-07-22T05:04:07\"\r\n }\r\n}",
+ "StatusCode": 403
+ },
+ {
+ "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users?$filter=userPrincipalName%20eq%20'test'&api-version=1.6",
+ "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycz8kZmlsdGVyPXVzZXJQcmluY2lwYWxOYW1lJTIwZXElMjAndGVzdCcmYXBpLXZlcnNpb249MS42",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ee8a5ee-73f3-4d7f-9b3b-35c41e4b6c31"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ocp-aad-diagnostics-server-name": [
+ "FBeTVolg9S8/ob21YgyQKSk9CCOsJE/mp+9M1b9XacA="
+ ],
+ "request-id": [
+ "eb394366-4e2a-41a6-ba9d-3a49d98f0ed5"
+ ],
+ "client-request-id": [
+ "9ee8a5ee-73f3-4d7f-9b3b-35c41e4b6c31"
+ ],
+ "x-ms-dirapi-data-contract-version": [
+ "1.6"
+ ],
+ "ocp-aad-session-key": [
+ "cN67Y6JgEgj-yLvbhrTN935Sy-1zNXgVWgum0KWjlpr52eK7Lxfk4aHF2UoMl1Fl5vC7YoDW5fVO7MT4sLyDUxO82bw4RUpFp5Km-miFhw5opySl9wYGcLpkgfqVPjEc.LXytGzvTlhnTvF2rs6iYg9HdMd_afqEip80GXRLTlyY"
+ ],
+ "Duration": [
+ "407882"
+ ],
+ "x-ms-resource-unit": [
+ "2"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
"X-AspNet-Version": [
"4.0.30319"
],
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "355436"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:36 GMT"
+ "Wed, 22 Jul 2020 05:04:41 GMT"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -1053,23 +1209,23 @@
"219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"a9e54584-e32f-4d4d-ba6b-cb132577f5f4\",\r\n \"date\": \"2020-04-14T08:46:36\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"eb394366-4e2a-41a6-ba9d-3a49d98f0ed5\",\r\n \"date\": \"2020-07-22T05:04:41\"\r\n }\r\n}",
"StatusCode": 403
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczIxNzA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczUxNjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d96e767-0002-4c82-9ec2-0c668d7df18f"
+ "9fff534b-2d12-4fcc-bef8-228df019fe93"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1078,7 +1234,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "554"
+ "593"
]
},
"ResponseHeaders": {
@@ -1089,10 +1245,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "8954f54a-29de-42a4-bc46-665977d35aff"
+ "88d6ca1f-c7a9-4c9d-871c-7dc9439789fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1113,16 +1269,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "fef9b257-8778-41d1-8977-d0dd60eebbb5"
+ "9f1cb70b-418e-43a0-a32d-fbefddcf47e5"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084343Z:fef9b257-8778-41d1-8977-d0dd60eebbb5"
+ "KOREASOUTH:20200722T050111Z:9f1cb70b-418e-43a0-a32d-fbefddcf47e5"
],
"Date": [
- "Tue, 14 Apr 2020 08:43:43 GMT"
+ "Wed, 22 Jul 2020 05:01:10 GMT"
],
"Content-Length": [
- "581"
+ "613"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1131,17 +1287,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps2170.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps5166.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczIxNzA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczUxNjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1155,10 +1311,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "e1a4c94d-20ba-45ba-bf14-da732d58d282"
+ "29cfc4a4-98e5-428b-ac5a-362613e26872"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1179,16 +1335,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "d48406eb-0633-46d9-8d87-46d6a554f1ea"
+ "3fb98d24-9e0b-47e0-aad2-6230633f0c7c"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084414Z:d48406eb-0633-46d9-8d87-46d6a554f1ea"
+ "KOREASOUTH:20200722T050141Z:3fb98d24-9e0b-47e0-aad2-6230633f0c7c"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:13 GMT"
+ "Wed, 22 Jul 2020 05:01:40 GMT"
],
"Content-Length": [
- "577"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1197,23 +1353,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2170\",\r\n \"name\": \"ps2170\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps2170.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps5166\",\r\n \"name\": \"ps5166\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps5166.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczI1MzQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"premium\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"premium\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c85b6265-a20d-4a25-bbc8-17800ef23e4b"
+ "b3a72adc-f816-4ad2-8fa0-31a48aafbd95"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1222,7 +1378,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "511"
+ "550"
]
},
"ResponseHeaders": {
@@ -1233,10 +1389,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "624ff25d-ddad-419a-9b55-34b34630ba62"
+ "c156f368-d593-4a3d-9f3a-7a831a44a1e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1257,16 +1413,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "19f24a1e-e4d0-44dd-ac02-81449743182c"
+ "9ac02f3c-edd8-416e-9724-fc6627eec8e9"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084419Z:19f24a1e-e4d0-44dd-ac02-81449743182c"
+ "KOREASOUTH:20200722T050146Z:9ac02f3c-edd8-416e-9724-fc6627eec8e9"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:18 GMT"
+ "Wed, 22 Jul 2020 05:01:45 GMT"
],
"Content-Length": [
- "564"
+ "587"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1275,17 +1431,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps2534.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps7.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczI1MzQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1299,10 +1455,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "eae746d8-61b0-4c80-a029-be8293a62ca9"
+ "a108e12a-95f6-44cd-8b68-6d3a591208d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1310,9 +1466,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -1322,17 +1475,20 @@
"X-Powered-By": [
"ASP.NET"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
"x-ms-correlation-request-id": [
- "3916222b-dc8a-4a0c-ac08-daf3d3af53f8"
+ "52e37622-bc3c-4f60-b0a6-8c324df485b6"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084450Z:3916222b-dc8a-4a0c-ac08-daf3d3af53f8"
+ "KOREASOUTH:20200722T050216Z:52e37622-bc3c-4f60-b0a6-8c324df485b6"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:50 GMT"
+ "Wed, 22 Jul 2020 05:02:16 GMT"
],
"Content-Length": [
- "560"
+ "583"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1341,23 +1497,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps2534\",\r\n \"name\": \"ps2534\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps2534.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps7\",\r\n \"name\": \"ps7\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps7.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgzOTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE0OTI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "117f9c93-df5a-481d-bcdc-c342f3737f9a"
+ "7b59ceac-81bf-4f13-a4de-0ac19d12c4a5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1366,7 +1522,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "476"
+ "515"
]
},
"ResponseHeaders": {
@@ -1377,10 +1533,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "23314d43-548c-4203-9404-4a8bddf96916"
+ "0fd26eaa-256a-4172-b062-3ec11d8243b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1401,16 +1557,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "9dc40a8e-95a3-435c-acad-025305366fbd"
+ "6a53ee35-3017-4284-aab4-3d1adc81ffe9"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084454Z:9dc40a8e-95a3-435c-acad-025305366fbd"
+ "KOREASOUTH:20200722T050221Z:6a53ee35-3017-4284-aab4-3d1adc81ffe9"
],
"Date": [
- "Tue, 14 Apr 2020 08:44:54 GMT"
+ "Wed, 22 Jul 2020 05:02:21 GMT"
],
"Content-Length": [
- "536"
+ "568"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1419,17 +1575,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391\",\r\n \"name\": \"ps8391\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps8391.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps1492.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgzOTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE0OTI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1443,10 +1599,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "8e15c382-53c1-42c2-8b31-c2ac20d8747f"
+ "817bbc35-01ca-401f-a28e-dd3c23c9d9dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1467,16 +1623,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "7f8b0bf0-a98d-4d8d-8832-b6b60d8d0203"
+ "64af91b6-de03-45b3-9a39-b3dc183ca275"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084525Z:7f8b0bf0-a98d-4d8d-8832-b6b60d8d0203"
+ "KOREASOUTH:20200722T050251Z:64af91b6-de03-45b3-9a39-b3dc183ca275"
],
"Date": [
- "Tue, 14 Apr 2020 08:45:24 GMT"
+ "Wed, 22 Jul 2020 05:02:51 GMT"
],
"Content-Length": [
- "532"
+ "564"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1485,23 +1641,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps8391\",\r\n \"name\": \"ps8391\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps8391.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps1492\",\r\n \"name\": \"ps1492\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps1492.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczk1OTU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczg2NjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 10,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 10,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3ddaecb-99d5-4841-a205-a6f84a902be7"
+ "8fe94eb7-b8b9-4838-a59a-e7a8ad837a67"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1510,7 +1666,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "549"
+ "588"
]
},
"ResponseHeaders": {
@@ -1521,10 +1677,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "5fab016d-2c1e-4ac4-a26d-72d82edf9ae3"
+ "c0583239-f7cc-47b5-9cde-76bc2e596efc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1545,16 +1701,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "586007a2-10b9-4f6c-8d48-2d7b26f445a4"
+ "5bebc2d1-38da-4318-b342-38ea1b648af4"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084531Z:586007a2-10b9-4f6c-8d48-2d7b26f445a4"
+ "KOREASOUTH:20200722T050301Z:5bebc2d1-38da-4318-b342-38ea1b648af4"
],
"Date": [
- "Tue, 14 Apr 2020 08:45:31 GMT"
+ "Wed, 22 Jul 2020 05:03:00 GMT"
],
"Content-Length": [
- "595"
+ "627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1563,17 +1719,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595\",\r\n \"name\": \"ps9595\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 10,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps9595.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661\",\r\n \"name\": \"ps8661\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 10,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps8661.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczk1OTU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczg2NjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1587,10 +1743,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "5c92ec19-d323-4763-a16f-57998f2c18c6"
+ "23e04896-95f1-4ee5-a22f-77c62704cbd9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1598,9 +1754,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -1610,17 +1763,20 @@
"X-Powered-By": [
"ASP.NET"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
"x-ms-correlation-request-id": [
- "ae724c40-971a-4e5a-81f3-91ec34e5f5ee"
+ "2adf3792-bf74-448e-8531-d04311fb729f"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084601Z:ae724c40-971a-4e5a-81f3-91ec34e5f5ee"
+ "KOREASOUTH:20200722T050331Z:2adf3792-bf74-448e-8531-d04311fb729f"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:01 GMT"
+ "Wed, 22 Jul 2020 05:03:31 GMT"
],
"Content-Length": [
- "591"
+ "623"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1629,23 +1785,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps9595\",\r\n \"name\": \"ps9595\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 10,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps9595.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps8661\",\r\n \"name\": \"ps8661\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 10,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps8661.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps3830?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczM4MzA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ5Mjc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "04ed216a-5221-4f36-b800-6ddf65b58e81"
+ "919160a0-2cba-4d2c-8d11-6e0a2515844b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1654,7 +1810,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "513"
+ "551"
]
},
"ResponseHeaders": {
@@ -1665,10 +1821,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "be017ee1-f049-4361-9206-81a26e3d689b"
+ "468e8db5-26cc-4387-bba2-9f65ca2b3a93"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1689,16 +1845,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "3a34e7ff-a4f7-4a13-af41-14b3fec12893"
+ "14ff5081-e103-449f-9102-458cd5297aa1"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084606Z:3a34e7ff-a4f7-4a13-af41-14b3fec12893"
+ "KOREASOUTH:20200722T050336Z:14ff5081-e103-449f-9102-458cd5297aa1"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:05 GMT"
+ "Wed, 22 Jul 2020 05:03:35 GMT"
],
"Content-Length": [
- "566"
+ "597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1707,17 +1863,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps3830\",\r\n \"name\": \"ps3830\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps3830.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": true,\r\n \"vaultUri\": \"https://ps4927.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps3830?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczM4MzA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ5Mjc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1731,10 +1887,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "2b794ca7-b201-4a14-a8c0-dc4eac0bd3b3"
+ "d92b6d2e-b3e7-4541-b5a6-a195ed58a53f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1755,16 +1911,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "cfe3909c-7b47-471c-a6b5-6cf6cd331cf8"
+ "8d455514-6ce5-429c-b9d7-e3b6f6356562"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084636Z:cfe3909c-7b47-471c-a6b5-6cf6cd331cf8"
+ "KOREASOUTH:20200722T050406Z:8d455514-6ce5-429c-b9d7-e3b6f6356562"
],
"Date": [
- "Tue, 14 Apr 2020 08:46:36 GMT"
+ "Wed, 22 Jul 2020 05:04:06 GMT"
],
"Content-Length": [
- "562"
+ "593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1773,23 +1929,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9141/providers/Microsoft.KeyVault/vaults/ps3830\",\r\n \"name\": \"ps3830\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps3830.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": true,\r\n \"vaultUri\": \"https://ps4927.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps91/providers/Microsoft.KeyVault/vaults/ps6580?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHM2NTgwP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps2106?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczIxMDY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8810e9bf-9fb6-418b-9bbe-de8726deb38e"
+ "01e6ed30-2a61-4cb5-803c-e4c083f4eb53"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1798,7 +1954,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "513"
+ "552"
]
},
"ResponseHeaders": {
@@ -1808,17 +1964,11 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-keyvault-service-version": [
+ "1.1.0.283"
],
"x-ms-request-id": [
- "569c73f7-4a99-42d3-b15b-6567263ca5d4"
- ],
- "x-ms-correlation-request-id": [
- "569c73f7-4a99-42d3-b15b-6567263ca5d4"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084637Z:569c73f7-4a99-42d3-b15b-6567263ca5d4"
+ "6b5f1759-4f02-45a4-8fbe-061199e812d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1826,39 +1976,51 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "50c30014-b224-4959-a31b-a45cd0b72f1f"
+ ],
+ "x-ms-routing-request-id": [
+ "KOREASOUTH:20200722T050410Z:50c30014-b224-4959-a31b-a45cd0b72f1f"
+ ],
"Date": [
- "Tue, 14 Apr 2020 08:46:37 GMT"
+ "Wed, 22 Jul 2020 05:04:09 GMT"
+ ],
+ "Content-Length": [
+ "598"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "96"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps91' could not be found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps2106\",\r\n \"name\": \"ps2106\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps2106.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps9141?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzOTE0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps2106?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzExOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczIxMDY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "d98fcb79-8c75-4464-9ab6-9beac4c6d6d9"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
]
},
"ResponseHeaders": {
@@ -1868,23 +2030,11 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-keyvault-service-version": [
+ "1.1.0.283"
],
"x-ms-request-id": [
- "3ece5724-8e6a-43b5-96bb-4e18d90e2543"
- ],
- "x-ms-correlation-request-id": [
- "3ece5724-8e6a-43b5-96bb-4e18d90e2543"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084642Z:3ece5724-8e6a-43b5-96bb-4e18d90e2543"
+ "0ef859a4-c33f-4aeb-a24f-386a0537aa6e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1892,87 +2042,63 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Tue, 14 Apr 2020 08:46:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28619.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "Server": [
+ "Microsoft-IIS/10.0"
],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "X-AspNet-Version": [
+ "4.0.30319"
],
- "Retry-After": [
- "15"
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-request-id": [
- "bf9cd859-51b3-4f6f-843a-373184f8b5b2"
+ "11994"
],
"x-ms-correlation-request-id": [
- "bf9cd859-51b3-4f6f-843a-373184f8b5b2"
+ "7ec1f4a8-6a68-40cc-be02-8d57ce9d30c3"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084658Z:bf9cd859-51b3-4f6f-843a-373184f8b5b2"
+ "KOREASOUTH:20200722T050440Z:7ec1f4a8-6a68-40cc-be02-8d57ce9d30c3"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "Date": [
+ "Wed, 22 Jul 2020 05:04:40 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Content-Length": [
+ "594"
],
- "Date": [
- "Tue, 14 Apr 2020 08:46:57 GMT"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7119/providers/Microsoft.KeyVault/vaults/ps2106\",\r\n \"name\": \"ps2106\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps2106.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7299/providers/Microsoft.KeyVault/vaults/ps6699?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzI5OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczY2OTk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d853bb01-da3e-4604-a722-c962c878f056"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "552"
]
},
"ResponseHeaders": {
@@ -1982,23 +2108,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "5b0771bc-2d92-4c8c-9b0e-d39668917725"
+ "37a37ce7-abd6-4eb7-bcbf-62aa00b5332a"
],
"x-ms-correlation-request-id": [
- "5b0771bc-2d92-4c8c-9b0e-d39668917725"
+ "37a37ce7-abd6-4eb7-bcbf-62aa00b5332a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084713Z:5b0771bc-2d92-4c8c-9b0e-d39668917725"
+ "KOREASOUTH:20200722T050441Z:37a37ce7-abd6-4eb7-bcbf-62aa00b5332a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2007,29 +2127,38 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:47:12 GMT"
+ "Wed, 22 Jul 2020 05:04:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
"Content-Length": [
- "0"
+ "98"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps7299' could not be found.\"\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps7119?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNzExOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "19671006-3f97-4c7f-ad3a-a633d5de99bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2040,22 +2169,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "9b590bec-3ad3-4bc3-9708-26f380a44e7a"
+ "c9cb3801-2850-4a4f-8463-a4728d5a21aa"
],
"x-ms-correlation-request-id": [
- "9b590bec-3ad3-4bc3-9708-26f380a44e7a"
+ "c9cb3801-2850-4a4f-8463-a4728d5a21aa"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084728Z:9b590bec-3ad3-4bc3-9708-26f380a44e7a"
+ "KOREASOUTH:20200722T050445Z:c9cb3801-2850-4a4f-8463-a4728d5a21aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2064,7 +2193,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:47:28 GMT"
+ "Wed, 22 Jul 2020 05:04:44 GMT"
],
"Expires": [
"-1"
@@ -2077,16 +2206,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2097,22 +2226,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11989"
],
"x-ms-request-id": [
- "df3958d7-a02e-4bb0-849c-d36961f78563"
+ "1bd1b03d-f9c2-4b07-bb20-469e7c96a4cd"
],
"x-ms-correlation-request-id": [
- "df3958d7-a02e-4bb0-849c-d36961f78563"
+ "1bd1b03d-f9c2-4b07-bb20-469e7c96a4cd"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084744Z:df3958d7-a02e-4bb0-849c-d36961f78563"
+ "KOREASOUTH:20200722T050500Z:1bd1b03d-f9c2-4b07-bb20-469e7c96a4cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2121,7 +2250,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:47:44 GMT"
+ "Wed, 22 Jul 2020 05:04:59 GMT"
],
"Expires": [
"-1"
@@ -2134,16 +2263,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2154,22 +2283,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11988"
],
"x-ms-request-id": [
- "083c9710-3fb8-4e24-a480-b1242de90689"
+ "b9f6b6f0-6098-4bef-9c3d-eb8dd0e29ba8"
],
"x-ms-correlation-request-id": [
- "083c9710-3fb8-4e24-a480-b1242de90689"
+ "b9f6b6f0-6098-4bef-9c3d-eb8dd0e29ba8"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084759Z:083c9710-3fb8-4e24-a480-b1242de90689"
+ "KOREASOUTH:20200722T050515Z:b9f6b6f0-6098-4bef-9c3d-eb8dd0e29ba8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2178,7 +2307,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:47:59 GMT"
+ "Wed, 22 Jul 2020 05:05:15 GMT"
],
"Expires": [
"-1"
@@ -2191,16 +2320,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2211,22 +2340,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11987"
],
"x-ms-request-id": [
- "658ebb2f-2e22-4285-ac3a-c7bfd2a4d8e2"
+ "ae890988-b7c3-4146-a43d-a45d01e8fdc5"
],
"x-ms-correlation-request-id": [
- "658ebb2f-2e22-4285-ac3a-c7bfd2a4d8e2"
+ "ae890988-b7c3-4146-a43d-a45d01e8fdc5"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084815Z:658ebb2f-2e22-4285-ac3a-c7bfd2a4d8e2"
+ "KOREASOUTH:20200722T050531Z:ae890988-b7c3-4146-a43d-a45d01e8fdc5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2235,7 +2364,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:48:14 GMT"
+ "Wed, 22 Jul 2020 05:05:31 GMT"
],
"Expires": [
"-1"
@@ -2248,16 +2377,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2268,22 +2397,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11986"
],
"x-ms-request-id": [
- "7549a66d-39bd-445c-b798-82268a17e59d"
+ "45f273d0-d538-4448-b134-48678d095452"
],
"x-ms-correlation-request-id": [
- "7549a66d-39bd-445c-b798-82268a17e59d"
+ "45f273d0-d538-4448-b134-48678d095452"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084830Z:7549a66d-39bd-445c-b798-82268a17e59d"
+ "KOREASOUTH:20200722T050546Z:45f273d0-d538-4448-b134-48678d095452"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2292,7 +2421,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:48:29 GMT"
+ "Wed, 22 Jul 2020 05:05:46 GMT"
],
"Expires": [
"-1"
@@ -2305,16 +2434,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2325,22 +2454,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11985"
],
"x-ms-request-id": [
- "d21aff92-fb6e-4b40-92d8-639dae521c04"
+ "9d93ee10-7ab5-4fed-b3f1-70404fa6c7f5"
],
"x-ms-correlation-request-id": [
- "d21aff92-fb6e-4b40-92d8-639dae521c04"
+ "9d93ee10-7ab5-4fed-b3f1-70404fa6c7f5"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084846Z:d21aff92-fb6e-4b40-92d8-639dae521c04"
+ "KOREASOUTH:20200722T050602Z:9d93ee10-7ab5-4fed-b3f1-70404fa6c7f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2349,7 +2478,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:48:45 GMT"
+ "Wed, 22 Jul 2020 05:06:01 GMT"
],
"Expires": [
"-1"
@@ -2362,16 +2491,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2382,22 +2511,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11984"
],
"x-ms-request-id": [
- "ee1807c8-43d0-4766-b069-851c777f2793"
+ "1aa2431a-5b93-435a-bca9-2e5993776089"
],
"x-ms-correlation-request-id": [
- "ee1807c8-43d0-4766-b069-851c777f2793"
+ "1aa2431a-5b93-435a-bca9-2e5993776089"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084901Z:ee1807c8-43d0-4766-b069-851c777f2793"
+ "KOREASOUTH:20200722T050617Z:1aa2431a-5b93-435a-bca9-2e5993776089"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2406,7 +2535,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:49:00 GMT"
+ "Wed, 22 Jul 2020 05:06:16 GMT"
],
"Expires": [
"-1"
@@ -2419,16 +2548,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2439,16 +2568,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11983"
],
"x-ms-request-id": [
- "5ec286ea-6376-47b6-9ba4-216ead2e241c"
+ "ca2f8cbc-7e28-4d3b-87b9-2afef52afbe2"
],
"x-ms-correlation-request-id": [
- "5ec286ea-6376-47b6-9ba4-216ead2e241c"
+ "ca2f8cbc-7e28-4d3b-87b9-2afef52afbe2"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084916Z:5ec286ea-6376-47b6-9ba4-216ead2e241c"
+ "KOREASOUTH:20200722T050632Z:ca2f8cbc-7e28-4d3b-87b9-2afef52afbe2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2457,7 +2586,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:49:16 GMT"
+ "Wed, 22 Jul 2020 05:06:32 GMT"
],
"Expires": [
"-1"
@@ -2470,16 +2599,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxNDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE5ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2490,16 +2619,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11982"
],
"x-ms-request-id": [
- "f7b050e0-bb9b-45c9-8d97-e2e8378acd0d"
+ "241ca1e7-1a5a-4146-90ea-56037508d9e5"
],
"x-ms-correlation-request-id": [
- "f7b050e0-bb9b-45c9-8d97-e2e8378acd0d"
+ "241ca1e7-1a5a-4146-90ea-56037508d9e5"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T084917Z:f7b050e0-bb9b-45c9-8d97-e2e8378acd0d"
+ "KOREASOUTH:20200722T050633Z:241ca1e7-1a5a-4146-90ea-56037508d9e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2508,7 +2637,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:49:17 GMT"
+ "Wed, 22 Jul 2020 05:06:32 GMT"
],
"Expires": [
"-1"
@@ -2523,14 +2652,15 @@
],
"Names": {
"Test-CreateNewVault": [
- "ps9141",
- "ps91",
- "ps2170",
- "ps2534",
- "ps8391",
- "ps3830",
- "ps6580",
- "ps9595"
+ "ps7119",
+ "ps7299",
+ "ps5166",
+ "ps7",
+ "ps1492",
+ "ps2106",
+ "ps6699",
+ "ps8661",
+ "ps4927"
]
},
"Variables": {
diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json
index fbb4054e8e76..c0d35460220a 100644
--- a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json
+++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json
@@ -1,34 +1,111 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sswus2/providers/Microsoft.KeyVault/vaults/sswus2pshkv?api-version=2018-02-14",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nzd3VzMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zc3d1czJwc2hrdj9hcGktdmVyc2lvbj0yMDE4LTAyLTE0",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"premium\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false\r\n }\r\n}",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6af2959-a2a7-4c22-b472-71158098dfd2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "dbde201a-5bfc-4ed4-a273-deb28ab5155c"
+ ],
+ "x-ms-correlation-request-id": [
+ "dbde201a-5bfc-4ed4-a273-deb28ab5155c"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023131Z:dbde201a-5bfc-4ed4-a273-deb28ab5155c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:31:31 GMT"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Content-Length": [
- "310"
+ "Expires": [
+ "-1"
],
+ "Content-Length": [
+ "10938"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
"x-ms-client-request-id": [
- "05ee9f73-af66-4c8e-a8b5-66c8ebec2a87"
+ "237b3b34-f055-486c-ae2a-6bfd06c10be5"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.3131.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.17134",
- "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.1.1"
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sswus2/providers/Microsoft.KeyVault/vaults/sswus2pshkv\",\r\n \"name\": \"sswus2pshkv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://sswus2pshkv.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "472"
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "92f3cf3a-1344-4045-9e2e-3f58651b229d"
+ ],
+ "x-ms-correlation-request-id": [
+ "92f3cf3a-1344-4045-9e2e-3f58651b229d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023131Z:92f3cf3a-1344-4045-9e2e-3f58651b229d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:31:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,11 +113,56 @@
"Expires": [
"-1"
],
+ "Content-Length": [
+ "7627"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3836?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzgzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ad9bfc2-278b-460a-920e-642e7e9ff536"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
"Pragma": [
"no-cache"
],
- "x-ms-keyvault-service-version": [
- "1.0.0.221"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "b37a47cf-e59d-4c0a-ab0d-cf073333fcfb"
+ ],
+ "x-ms-correlation-request-id": [
+ "b37a47cf-e59d-4c0a-ab0d-cf073333fcfb"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023134Z:b37a47cf-e59d-4c0a-ab0d-cf073333fcfb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,23 +170,203 @@
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Date": [
+ "Fri, 28 Aug 2020 02:31:34 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3836\",\r\n \"name\": \"ps3836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "19b04815-1a56-4161-a28b-4a75e6f34dcc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
],
"x-ms-request-id": [
- "9c50ca5f-2b70-4c21-bb95-941d77fa6629"
+ "933f6c55-9735-4383-80b2-1adda9178932"
],
"x-ms-correlation-request-id": [
- "9c50ca5f-2b70-4c21-bb95-941d77fa6629"
+ "933f6c55-9735-4383-80b2-1adda9178932"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180813T233230Z:9c50ca5f-2b70-4c21-bb95-941d77fa6629"
+ "SOUTHEASTASIA:20200828T023134Z:933f6c55-9735-4383-80b2-1adda9178932"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:31:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "12"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users?$filter=userPrincipalName%20eq%20'test'&api-version=1.6",
+ "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycz8kZmlsdGVyPXVzZXJQcmluY2lwYWxOYW1lJTIwZXElMjAndGVzdCcmYXBpLXZlcnNpb249MS42",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "200b00aa-f62f-4dad-b26a-7923eb632a24"
+ ],
+ "Accept-Language": [
+ "en-US"
],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ocp-aad-diagnostics-server-name": [
+ "gXd2c7YHeohFY6xcMH6Lw9zB0oEvUFQ8DN5Z/CJ1FAw="
+ ],
+ "request-id": [
+ "7d6301c8-7f5c-4427-9a4f-d243103cffa4"
+ ],
+ "client-request-id": [
+ "200b00aa-f62f-4dad-b26a-7923eb632a24"
+ ],
+ "x-ms-dirapi-data-contract-version": [
+ "1.6"
+ ],
+ "ocp-aad-session-key": [
+ "D5J-0RIfNa1j6v2YDPMTlMPyoOqAVOEHFFta7tTn4HwNxrRQWDrXoxowB7AiYtSxAXPVwH6HgP5BmQH4Gz3oVV16P2xZCrtE46nZypDF1N-RIlqguh7gd_mHT57qw-Il.XNx73vh0Twfy4Rvw5zoQ5V0eEWdCp2gxQVieqlOYP34"
+ ],
+ "Duration": [
+ "279009"
+ ],
+ "x-ms-resource-unit": [
+ "2"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
"Date": [
- "Mon, 13 Aug 2018 23:32:30 GMT"
+ "Fri, 28 Aug 2020 02:31:34 GMT"
+ ],
+ "Content-Length": [
+ "219"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"7d6301c8-7f5c-4427-9a4f-d243103cffa4\",\r\n \"date\": \"2020-08-28T02:31:34\"\r\n }\r\n}",
+ "StatusCode": 403
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3836/providers/Microsoft.KeyVault/vaults/ps4477?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0Nzc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3252c19d-9a4f-4ef2-9cff-092ae4e59218"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "513"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-keyvault-service-version": [
+ "1.1.48.0"
+ ],
+ "x-ms-request-id": [
+ "efe53d74-7e79-4534-aa4d-503315833f7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -74,13 +376,614 @@
],
"X-Powered-By": [
"ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8c7da68-a33e-4992-b9c7-866c23bc7d2c"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023143Z:b8c7da68-a33e-4992-b9c7-866c23bc7d2c"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:31:42 GMT"
+ ],
+ "Content-Length": [
+ "566"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3836/providers/Microsoft.KeyVault/vaults/ps4477\",\r\n \"name\": \"ps4477\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps4477.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3836/providers/Microsoft.KeyVault/vaults/ps4477?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0Nzc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-keyvault-service-version": [
+ "1.1.48.0"
+ ],
+ "x-ms-request-id": [
+ "262b4923-3c4e-45cf-9041-752083386616"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "09e2cc0b-b136-442c-9f55-85953678cdeb"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023213Z:09e2cc0b-b136-442c-9f55-85953678cdeb"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:32:13 GMT"
+ ],
+ "Content-Length": [
+ "562"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3836/providers/Microsoft.KeyVault/vaults/ps4477\",\r\n \"name\": \"ps4477\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps4477.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3836?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzgzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90454163-b2e6-45d5-97c3-0c77ed5aa695"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "582d12b2-348b-4a4e-a0c4-1d9738be3591"
+ ],
+ "x-ms-correlation-request-id": [
+ "582d12b2-348b-4a4e-a0c4-1d9738be3591"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023217Z:582d12b2-348b-4a4e-a0c4-1d9738be3591"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:32:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "5e39c053-6014-4a48-bef4-45fcfffb6bfa"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e39c053-6014-4a48-bef4-45fcfffb6bfa"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023233Z:5e39c053-6014-4a48-bef4-45fcfffb6bfa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:32:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "08fef567-e538-458d-9740-e4f7ebe42702"
+ ],
+ "x-ms-correlation-request-id": [
+ "08fef567-e538-458d-9740-e4f7ebe42702"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023248Z:08fef567-e538-458d-9740-e4f7ebe42702"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:32:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "f5fb14f7-9fe0-4872-a996-da49a3522329"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5fb14f7-9fe0-4872-a996-da49a3522329"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023304Z:f5fb14f7-9fe0-4872-a996-da49a3522329"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:33:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "1e550fde-f189-425c-957b-238aa3c8d1bf"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e550fde-f189-425c-957b-238aa3c8d1bf"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023319Z:1e550fde-f189-425c-957b-238aa3c8d1bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:33:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "d1be6687-319c-4c36-9fcb-7aaed9e4be19"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1be6687-319c-4c36-9fcb-7aaed9e4be19"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023335Z:d1be6687-319c-4c36-9fcb-7aaed9e4be19"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:33:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "473350da-89ef-4460-b89a-946c37c0e731"
+ ],
+ "x-ms-correlation-request-id": [
+ "473350da-89ef-4460-b89a-946c37c0e731"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023350Z:473350da-89ef-4460-b89a-946c37c0e731"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:33:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "ddcbb5c0-d817-4f8a-bf37-6a3fdd2cbd03"
+ ],
+ "x-ms-correlation-request-id": [
+ "ddcbb5c0-d817-4f8a-bf37-6a3fdd2cbd03"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023406Z:ddcbb5c0-d817-4f8a-bf37-6a3fdd2cbd03"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:34:06 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29130.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "f9db35b7-312a-4577-b587-6fa6c433adb6"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9db35b7-312a-4577-b587-6fa6c433adb6"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20200828T023406Z:f9db35b7-312a-4577-b587-6fa6c433adb6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 28 Aug 2020 02:34:06 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
+ "ResponseBody": "",
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "Test-ModifyAccessPolicyNegativeCases": [
+ "ps3836",
+ "ps4477"
+ ]
+ },
"Variables": {
- "SubscriptionId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d"
+ "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb",
+ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"
}
}
\ No newline at end of file
diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestUpdateVault.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestUpdateVault.json
index 285b8c0702b1..93f6d316a1ed 100644
--- a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestUpdateVault.json
+++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestUpdateVault.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0469eba4-c595-4055-be01-43d8b968f38a"
+ "92c2f81d-91f8-476c-9c7c-1d104164b751"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -27,16 +27,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "cb3434d4-4073-4ab5-9ea3-2dae1d07e091"
+ "31d5d44c-dfcf-47ae-914b-88b8fb1bd273"
],
"x-ms-correlation-request-id": [
- "cb3434d4-4073-4ab5-9ea3-2dae1d07e091"
+ "31d5d44c-dfcf-47ae-914b-88b8fb1bd273"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081031Z:cb3434d4-4073-4ab5-9ea3-2dae1d07e091"
+ "KOREASOUTH:20200722T050816Z:31d5d44c-dfcf-47ae-914b-88b8fb1bd273"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:10:31 GMT"
+ "Wed, 22 Jul 2020 05:08:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,10 +54,10 @@
"-1"
],
"Content-Length": [
- "10303"
+ "10899"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
@@ -67,16 +67,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb427060-5a02-42eb-8d98-200fdd086f36"
+ "b877169f-bd7c-4170-b8b6-aea14096e6e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -87,16 +87,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-request-id": [
- "f26d1658-d476-4780-a937-58bdbc888347"
+ "1a79e1cb-4b99-4448-9b4e-aa7c821432e8"
],
"x-ms-correlation-request-id": [
- "f26d1658-d476-4780-a937-58bdbc888347"
+ "1a79e1cb-4b99-4448-9b4e-aa7c821432e8"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081032Z:f26d1658-d476-4780-a937-58bdbc888347"
+ "KOREASOUTH:20200722T050816Z:1a79e1cb-4b99-4448-9b4e-aa7c821432e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,7 +105,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:10:31 GMT"
+ "Wed, 22 Jul 2020 05:08:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -114,29 +114,29 @@
"-1"
],
"Content-Length": [
- "5958"
+ "6417"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\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 \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\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 \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8030?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps9185?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzOTE4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9ac041c-c75c-4588-9045-ca1324ac19d9"
+ "55f86500-e304-484b-be20-67e1ba1e734d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -153,16 +153,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "d6d6d708-5400-4542-855f-99bb2330d918"
+ "d8f3b123-20f1-43d4-9b6e-b40195d1c093"
],
"x-ms-correlation-request-id": [
- "d6d6d708-5400-4542-855f-99bb2330d918"
+ "d8f3b123-20f1-43d4-9b6e-b40195d1c093"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081036Z:d6d6d708-5400-4542-855f-99bb2330d918"
+ "KOREASOUTH:20200722T050818Z:d8f3b123-20f1-43d4-9b6e-b40195d1c093"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +171,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:10:35 GMT"
+ "Wed, 22 Jul 2020 05:08:18 GMT"
],
"Content-Length": [
"168"
@@ -183,7 +183,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030\",\r\n \"name\": \"ps8030\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185\",\r\n \"name\": \"ps9185\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -193,16 +193,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2495abf3-cb01-4f1e-bceb-2199254e9a35"
+ "f0cd3555-69df-46fe-bd77-899d9c8d2244"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -213,16 +213,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-request-id": [
- "8149b9cd-69aa-4510-9ede-42231527d76c"
+ "d399004b-4b65-4653-94aa-e6e6618e4dfa"
],
"x-ms-correlation-request-id": [
- "8149b9cd-69aa-4510-9ede-42231527d76c"
+ "d399004b-4b65-4653-94aa-e6e6618e4dfa"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081036Z:8149b9cd-69aa-4510-9ede-42231527d76c"
+ "KOREASOUTH:20200722T050819Z:d399004b-4b65-4653-94aa-e6e6618e4dfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +231,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:10:35 GMT"
+ "Wed, 22 Jul 2020 05:08:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -240,10 +240,10 @@
"-1"
],
"Content-Length": [
- "961"
+ "272"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg6629/providers/Microsoft.KeyVault/vaults/pshtestvault2545\",\r\n \"name\": \"pshtestvault2545\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5667/providers/Microsoft.KeyVault/vaults/pshtestvault727\",\r\n \"name\": \"pshtestvault727\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -253,16 +253,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22a33b22-616b-48da-9f43-41cd86e655fb"
+ "b8344e0b-d909-49d4-a679-e3d30fe6becc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -273,16 +273,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-request-id": [
- "7e506b2c-c31c-4a0e-a8cf-f7e6d5355172"
+ "0b4de071-dac8-465f-a880-e0ed49c9f5f2"
],
"x-ms-correlation-request-id": [
- "7e506b2c-c31c-4a0e-a8cf-f7e6d5355172"
+ "0b4de071-dac8-465f-a880-e0ed49c9f5f2"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081119Z:7e506b2c-c31c-4a0e-a8cf-f7e6d5355172"
+ "KOREASOUTH:20200722T050901Z:0b4de071-dac8-465f-a880-e0ed49c9f5f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -291,7 +291,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:19 GMT"
+ "Wed, 22 Jul 2020 05:09:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -300,10 +300,10 @@
"-1"
],
"Content-Length": [
- "911"
+ "226"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg5048/providers/Microsoft.KeyVault/vaults/pshtestvault3389\",\r\n \"name\": \"pshtestvault3389\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingkv1\",\r\n \"name\": \"yemingkv1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yemingpr\",\r\n \"name\": \"yemingpr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -313,16 +313,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7003be66-adaf-4360-96c3-813a39400ba8"
+ "d0c162a9-7de2-4eca-9e91-e84b9aaa078b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -333,28 +333,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "EiyNgt/7cajJz6LoBgiFeNcfF7Tsk7uBKSIBQC/gzYI="
+ "XC4zR8U6xcvWeMKIfBG+8Y8PX8fZF41PAKo6xnUKJYY="
],
"request-id": [
- "2026ea3c-dccd-4af7-88e8-86e6c048889c"
+ "ec3602a7-fbe3-4881-9927-be6d5c3b64e8"
],
"client-request-id": [
- "7003be66-adaf-4360-96c3-813a39400ba8"
+ "d0c162a9-7de2-4eca-9e91-e84b9aaa078b"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "p2gOvlG9VlG9p_tD6h4Mz1XGnxXHqQub_hrCr8UpWda09wv6wKx8r2JTGtD23b-UQuBH0gU5PJy3i5qlk_UvXmaAKiwjZG81FiacP9xCF2BeMRmAPK-1XeiH9V_rvhFI.bfdbydDwKBhJzrfC87Rpf1pyhH3pzQYvVsWKduJxZPo"
+ "pMphAIEhN1PvgdMRb2ej9HYGSYUCT_qrDmkF-37bAJKvwUXpCXHcKy2dJ8s2t99l0fWnEN4xCV7sxjwknnHGGZV6MQvef5cERg3YjB2JOvHusGGIwht1TgJL1oP6LG0h.AKhGHlJ_diqrICEkpMeotpoSxaBasWYACmf1UVB8Nxk"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "352548"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -362,11 +362,14 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "330131"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:10:36 GMT"
+ "Wed, 22 Jul 2020 05:08:19 GMT"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -378,7 +381,7 @@
"219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"2026ea3c-dccd-4af7-88e8-86e6c048889c\",\r\n \"date\": \"2020-04-14T08:10:36\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"ec3602a7-fbe3-4881-9927-be6d5c3b64e8\",\r\n \"date\": \"2020-07-22T05:08:19\"\r\n }\r\n}",
"StatusCode": 403
},
{
@@ -388,16 +391,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "849ffb53-9d58-43ac-8061-9275b59e4985"
+ "42319fca-49fc-457d-909e-037f9115b580"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11"
+ "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -408,28 +411,28 @@
"no-cache"
],
"ocp-aad-diagnostics-server-name": [
- "jofFi2H74g9+0KeSzSiwqdBOE1tu1pkdN/pLFmk4uxw="
+ "j/YoP8r7wGTz5lBiUGh6MJmPGpOmYmvPBAFcfpcO1TA="
],
"request-id": [
- "7e0257a6-d90d-488c-a692-550a41e8f49d"
+ "397d9ce0-4051-4bf3-b83d-546a571e307c"
],
"client-request-id": [
- "849ffb53-9d58-43ac-8061-9275b59e4985"
+ "42319fca-49fc-457d-909e-037f9115b580"
],
"x-ms-dirapi-data-contract-version": [
"1.6"
],
"ocp-aad-session-key": [
- "OP-7W93zCZXmYSzKP8yn7a8qfYkdS3LojYy6sV7-N-NFsQxHX3TS1WN1x3RSCuW9CZeyB0mPY8xmdlxruuj1qm3Hyon6BQnjEA06_hUuGXpdqCwf_gQ_cQI7ZvF3ReYg.ntYCtBx4JmHfUqockO6XX5I-Rryc2_D--bRHyoDeHZM"
+ "n60HDOz-uCKA00xiZb3tujODlWmy39a0Dt7YsNjXpzAs4Q6Z0vu5BgJ2Fna5RxCr6pSguVZ262ND4KP2dTe2xD_mXUnMQy1VfSNly91e04b8AUzVOiVE5GjK856qD-Ne.L2YW0jyXqocQQogD7FXt-GBHwnUjsW4qUiHdQ5NqL-Q"
],
- "DataServiceVersion": [
- "3.0;"
+ "Duration": [
+ "446898"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-resource-unit": [
+ "2"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "DataServiceVersion": [
+ "3.0;"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -437,11 +440,14 @@
"X-Powered-By": [
"ASP.NET"
],
- "Duration": [
- "395826"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:19 GMT"
+ "Wed, 22 Jul 2020 05:09:01 GMT"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -453,23 +459,23 @@
"219"
]
},
- "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"7e0257a6-d90d-488c-a692-550a41e8f49d\",\r\n \"date\": \"2020-04-14T08:11:19\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"397d9ce0-4051-4bf3-b83d-546a571e307c\",\r\n \"date\": \"2020-07-22T05:09:02\"\r\n }\r\n}",
"StatusCode": 403
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3bc017ba-9c7c-41b3-ae11-1d4487d97271"
+ "6b967074-47cc-4d69-93d1-eccbf21e6c75"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -478,7 +484,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "485"
+ "524"
]
},
"ResponseHeaders": {
@@ -489,10 +495,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "45310717-0b9a-4a2c-9533-83074b2584e0"
+ "30a15c79-f399-4c07-8fae-f4de9d7c5050"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,19 +516,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "5f8a0b1f-0d33-4e5e-b3eb-f2c232441a6b"
+ "00200e86-0ecd-4c22-8f10-94086c3c3c70"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081046Z:5f8a0b1f-0d33-4e5e-b3eb-f2c232441a6b"
+ "KOREASOUTH:20200722T050828Z:00200e86-0ecd-4c22-8f10-94086c3c3c70"
],
"Date": [
- "Tue, 14 Apr 2020 08:10:46 GMT"
+ "Wed, 22 Jul 2020 05:08:27 GMT"
],
"Content-Length": [
- "542"
+ "577"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -531,23 +537,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps822.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f6323b7-1ffc-4ed5-9d37-bf0eeede5b8a"
+ "92da1874-f7f3-4017-8980-cb14f056224e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -556,7 +562,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "623"
+ "663"
]
},
"ResponseHeaders": {
@@ -567,10 +573,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "02155ff8-6f6e-4674-aa1b-c937be16be30"
+ "3142ef91-c15c-4228-bf95-9bb402a9b8ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -588,19 +594,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "768b149a-34f6-4736-869d-c9371124b09b"
+ "8cc08243-d0f6-42b1-9356-42b30f88b0f2"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081117Z:768b149a-34f6-4736-869d-c9371124b09b"
+ "KOREASOUTH:20200722T050859Z:8cc08243-d0f6-42b1-9356-42b30f88b0f2"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:17 GMT"
+ "Wed, 22 Jul 2020 05:08:59 GMT"
],
"Content-Length": [
- "568"
+ "603"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -609,23 +615,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "059300b0-8785-4c34-860e-968b06e9e8c9"
+ "418b1689-ddc0-469b-b5b5-351acb4ee12b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -634,7 +640,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "623"
+ "663"
]
},
"ResponseHeaders": {
@@ -645,10 +651,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "7b152648-c6f8-4162-a298-113b00317a3a"
+ "d046aee5-c791-483c-8a70-5c23498718d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -666,19 +672,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "dc2d7280-1e69-44d2-bd0f-01eca7888754"
+ "6ef2ceb7-11b1-4625-bdee-ac9b3b37c0ce"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081118Z:dc2d7280-1e69-44d2-bd0f-01eca7888754"
+ "KOREASOUTH:20200722T050900Z:6ef2ceb7-11b1-4625-bdee-ac9b3b37c0ce"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:17 GMT"
+ "Wed, 22 Jul 2020 05:09:00 GMT"
],
"Content-Length": [
- "568"
+ "603"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -687,23 +693,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3991f238-7f88-473c-b66f-4b7b68502307"
+ "98174db6-e554-4907-84bc-775c1dbfaae2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -712,7 +718,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "659"
+ "699"
]
},
"ResponseHeaders": {
@@ -723,10 +729,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "5efd4395-2ac3-40bb-a536-4e684f2b61a5"
+ "9b94bb60-944b-4f80-81a2-627c14ba94bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -744,19 +750,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-correlation-request-id": [
- "2dfe0bd5-8f5f-4229-8bff-98b5544849fd"
+ "2473190b-4a20-4ab3-9328-448ac93c6c4f"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081119Z:2dfe0bd5-8f5f-4229-8bff-98b5544849fd"
+ "KOREASOUTH:20200722T050901Z:2473190b-4a20-4ab3-9328-448ac93c6c4f"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:18 GMT"
+ "Wed, 22 Jul 2020 05:09:01 GMT"
],
"Content-Length": [
- "597"
+ "632"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -765,17 +771,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -789,10 +795,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "22cf21ff-6b02-451b-aae5-32fca0430771"
+ "de311efd-f9de-4e7e-aa47-460597eef69e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -813,16 +819,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "d897588e-06b3-44e8-ac1b-cfe94ab3eed0"
+ "682566f0-4c03-4770-96c1-ccff73aa7d69"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081116Z:d897588e-06b3-44e8-ac1b-cfe94ab3eed0"
+ "KOREASOUTH:20200722T050858Z:682566f0-4c03-4770-96c1-ccff73aa7d69"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:16 GMT"
+ "Wed, 22 Jul 2020 05:08:58 GMT"
],
"Content-Length": [
- "538"
+ "573"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -831,23 +837,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e95974ae-b25a-45d6-86d6-142f766cdf49"
+ "aca399d7-8115-4949-9280-b4ad617c0640"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -861,10 +867,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "e7fb1540-573d-4bfc-a107-768ccde5cc0a"
+ "9f7c6a1a-27f1-4be4-be6a-6354eafc5a4b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -885,16 +891,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5cbde716-6969-4422-9534-e931b77ba043"
+ "92a12709-7d46-47ee-9fed-643a3948ac54"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081117Z:5cbde716-6969-4422-9534-e931b77ba043"
+ "KOREASOUTH:20200722T050858Z:92a12709-7d46-47ee-9fed-643a3948ac54"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:16 GMT"
+ "Wed, 22 Jul 2020 05:08:58 GMT"
],
"Content-Length": [
- "538"
+ "573"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -903,23 +909,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a58402f-5e17-4535-bec0-4704b3fd7e7c"
+ "56ff0c6b-0406-4c7f-ba1e-0f0803b9291f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -933,10 +939,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "8b6a08c9-0733-4ce4-b56d-82633ac123de"
+ "af18551c-6db8-4457-bed1-f82fdccb84d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -957,16 +963,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "8699dd70-48ff-4c7d-8677-12bb9514a0af"
+ "aa5570db-246f-43c2-a588-85357c4f2c6e"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081118Z:8699dd70-48ff-4c7d-8677-12bb9514a0af"
+ "KOREASOUTH:20200722T050859Z:aa5570db-246f-43c2-a588-85357c4f2c6e"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:17 GMT"
+ "Wed, 22 Jul 2020 05:08:59 GMT"
],
"Content-Length": [
- "568"
+ "603"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -975,23 +981,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ2NjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00f8dccd-0ba5-4c6f-bb5f-ffcb66da4ce0"
+ "28094497-8754-466f-a1a6-4a957ab356d3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1005,10 +1011,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "f82f1b50-2efc-47c7-ae55-0a8e453f4913"
+ "18afc0d6-b899-43a8-89a3-ca36d998a643"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1029,16 +1035,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "9db30034-3be3-41d0-bab9-8fdbc3fff031"
+ "bc3dd93b-a3ec-4875-8544-8fb241332f87"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081119Z:9db30034-3be3-41d0-bab9-8fdbc3fff031"
+ "KOREASOUTH:20200722T050901Z:bc3dd93b-a3ec-4875-8544-8fb241332f87"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:18 GMT"
+ "Wed, 22 Jul 2020 05:09:00 GMT"
],
"Content-Length": [
- "568"
+ "603"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1047,23 +1053,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps822\",\r\n \"name\": \"ps822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps4664\",\r\n \"name\": \"ps4664\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps4664.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU5ODA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ccf82b06-a6ae-49cc-9b2a-091cb0f4d9dd"
+ "38549835-5675-46a4-be36-5676538edf4f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1072,7 +1078,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "485"
+ "524"
]
},
"ResponseHeaders": {
@@ -1083,10 +1089,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "e0d2d55d-6380-4cc7-9914-0988cf0ddaae"
+ "956980be-4c96-4f71-971a-850e338e9742"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1104,19 +1110,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1194"
],
"x-ms-correlation-request-id": [
- "5bea22b6-8163-4ec0-9ab7-1844ec7e3b6a"
+ "99b28106-5f10-4a31-9c4c-ff7a5868a0f0"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081123Z:5bea22b6-8163-4ec0-9ab7-1844ec7e3b6a"
+ "KOREASOUTH:20200722T050905Z:99b28106-5f10-4a31-9c4c-ff7a5868a0f0"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:22 GMT"
+ "Wed, 22 Jul 2020 05:09:05 GMT"
],
"Content-Length": [
- "545"
+ "574"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1125,23 +1131,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps5980.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps716.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU5ODA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps5980.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18a28d15-74a2-45c2-82ea-9ad4743c74b1"
+ "43e53520-7949-49df-83af-8305e012366d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1150,7 +1156,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "660"
+ "698"
]
},
"ResponseHeaders": {
@@ -1161,10 +1167,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "9b2f51c4-f1aa-465e-87a3-7a8109cdda61"
+ "c99ee98a-6ce4-42cd-936a-4443326fd059"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1182,19 +1188,97 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7a6ee87-f5d6-4e4b-a98c-f4fe9ce8b24f"
+ ],
+ "x-ms-routing-request-id": [
+ "KOREASOUTH:20200722T050937Z:e7a6ee87-f5d6-4e4b-a98c-f4fe9ce8b24f"
+ ],
+ "Date": [
+ "Wed, 22 Jul 2020 05:09:36 GMT"
+ ],
+ "Content-Length": [
+ "629"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": true,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1c84d921-421a-4eb4-852e-c58bcfe3bee4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "697"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-keyvault-service-version": [
+ "1.1.0.283"
+ ],
+ "x-ms-request-id": [
+ "9ff1aa65-d3b9-408a-b55f-943eb39e8243"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
],
"x-ms-correlation-request-id": [
- "caa0f0b7-dc40-4e75-97cc-1288ba3c92bf"
+ "09d9d133-d7cb-4bf3-b6e1-c0c3293f423a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081155Z:caa0f0b7-dc40-4e75-97cc-1288ba3c92bf"
+ "KOREASOUTH:20200722T050938Z:09d9d133-d7cb-4bf3-b6e1-c0c3293f423a"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:55 GMT"
+ "Wed, 22 Jul 2020 05:09:37 GMT"
],
"Content-Length": [
- "600"
+ "628"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1203,17 +1287,95 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps5980.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU5ODA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2bbf5fe-ddc7-4390-ab70-376b9c93b6ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "698"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-keyvault-service-version": [
+ "1.1.0.283"
+ ],
+ "x-ms-request-id": [
+ "32d8f677-6d5f-481a-be6a-74f7d459d3b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8b233d7-3775-48b5-9400-2981d5cccb8c"
+ ],
+ "x-ms-routing-request-id": [
+ "KOREASOUTH:20200722T050939Z:f8b233d7-3775-48b5-9400-2981d5cccb8c"
+ ],
+ "Date": [
+ "Wed, 22 Jul 2020 05:09:39 GMT"
+ ],
+ "Content-Length": [
+ "629"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1227,10 +1389,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "a4841fa6-6867-4969-a9bf-c09a90ef3398"
+ "859f1eb3-c044-4f89-85b8-db365cf1f0b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1238,9 +1400,78 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
+ "x-ms-correlation-request-id": [
+ "60177615-7b29-4383-a182-f84c41cf766c"
+ ],
+ "x-ms-routing-request-id": [
+ "KOREASOUTH:20200722T050936Z:60177615-7b29-4383-a182-f84c41cf766c"
+ ],
+ "Date": [
+ "Wed, 22 Jul 2020 05:09:35 GMT"
+ ],
+ "Content-Length": [
+ "570"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5eb10b54-9e55-4b16-9cb5-b04cb5e7512c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-keyvault-service-version": [
+ "1.1.0.283"
+ ],
+ "x-ms-request-id": [
+ "0d8ef92f-6d64-4907-b829-477d55cf451d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -1250,17 +1481,20 @@
"X-Powered-By": [
"ASP.NET"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
"x-ms-correlation-request-id": [
- "343f6fde-70f4-4dac-b3e4-27716814ed10"
+ "ccb3a4c3-8352-4bab-8e88-3d4ab18968dc"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081154Z:343f6fde-70f4-4dac-b3e4-27716814ed10"
+ "KOREASOUTH:20200722T050936Z:ccb3a4c3-8352-4bab-8e88-3d4ab18968dc"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:53 GMT"
+ "Wed, 22 Jul 2020 05:09:35 GMT"
],
"Content-Length": [
- "541"
+ "570"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1269,23 +1503,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps5980.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODAzMC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU5ODA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2becd24-e83a-4500-8937-fac6a0128c67"
+ "ff758180-a5fe-4743-abd7-798d4b71009d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
@@ -1299,10 +1533,10 @@
"no-cache"
],
"x-ms-keyvault-service-version": [
- "1.1.0.276"
+ "1.1.0.283"
],
"x-ms-request-id": [
- "86e33662-a5cc-4914-9891-6489e02e4bda"
+ "700f6074-d6c1-426a-b32c-11f3ca62d3ab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1320,19 +1554,91 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b86ca73-b9ed-4609-8402-8306ef7c757b"
+ ],
+ "x-ms-routing-request-id": [
+ "KOREASOUTH:20200722T050937Z:9b86ca73-b9ed-4609-8402-8306ef7c757b"
+ ],
+ "Date": [
+ "Wed, 22 Jul 2020 05:09:37 GMT"
+ ],
+ "Content-Length": [
+ "629"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTE4NS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69a16afb-ecb8-49bc-bc0b-816e25cba316"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-keyvault-service-version": [
+ "1.1.0.283"
+ ],
+ "x-ms-request-id": [
+ "1d644b80-a5c7-4c59-adc7-edf34b47281c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
],
"x-ms-correlation-request-id": [
- "8d24c6af-6122-4392-a721-68b7a1b15a41"
+ "0c4eb09b-dcb9-4577-9eaf-f3c199d67b06"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081155Z:8d24c6af-6122-4392-a721-68b7a1b15a41"
+ "KOREASOUTH:20200722T050938Z:0c4eb09b-dcb9-4577-9eaf-f3c199d67b06"
],
"Date": [
- "Tue, 14 Apr 2020 08:11:55 GMT"
+ "Wed, 22 Jul 2020 05:09:38 GMT"
],
"Content-Length": [
- "541"
+ "628"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1341,26 +1647,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8030/providers/Microsoft.KeyVault/vaults/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://ps5980.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9185/providers/Microsoft.KeyVault/vaults/ps716\",\r\n \"name\": \"ps716\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 77,\r\n \"enableRbacAuthorization\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps716.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8030?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps9185?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzOTE4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c81a6046-4cae-4592-ba91-3409a5a2d344"
+ "583a99f6-4280-420d-a1de-9368dd2ed006"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1371,22 +1677,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14997"
],
"x-ms-request-id": [
- "6e48ac4e-e3e4-4541-83a4-93dd3eeda852"
+ "434c913b-3341-4eda-9761-25896f56dadf"
],
"x-ms-correlation-request-id": [
- "6e48ac4e-e3e4-4541-83a4-93dd3eeda852"
+ "434c913b-3341-4eda-9761-25896f56dadf"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081201Z:6e48ac4e-e3e4-4541-83a4-93dd3eeda852"
+ "KOREASOUTH:20200722T050943Z:434c913b-3341-4eda-9761-25896f56dadf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1395,7 +1701,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:12:01 GMT"
+ "Wed, 22 Jul 2020 05:09:42 GMT"
],
"Expires": [
"-1"
@@ -1408,16 +1714,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1428,22 +1734,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-request-id": [
- "4b75675d-ccef-407a-b929-99f3e86b10df"
+ "ccf3f1c2-5071-4695-b5e0-514220a3bb66"
],
"x-ms-correlation-request-id": [
- "4b75675d-ccef-407a-b929-99f3e86b10df"
+ "ccf3f1c2-5071-4695-b5e0-514220a3bb66"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081217Z:4b75675d-ccef-407a-b929-99f3e86b10df"
+ "KOREASOUTH:20200722T050958Z:ccf3f1c2-5071-4695-b5e0-514220a3bb66"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,7 +1758,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:12:16 GMT"
+ "Wed, 22 Jul 2020 05:09:58 GMT"
],
"Expires": [
"-1"
@@ -1465,16 +1771,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1485,22 +1791,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-request-id": [
- "c3a4ca39-1513-4080-b6a3-51c4e3a45fdd"
+ "3168ec85-f355-437e-8e95-06bbc9a6219a"
],
"x-ms-correlation-request-id": [
- "c3a4ca39-1513-4080-b6a3-51c4e3a45fdd"
+ "3168ec85-f355-437e-8e95-06bbc9a6219a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081232Z:c3a4ca39-1513-4080-b6a3-51c4e3a45fdd"
+ "KOREASOUTH:20200722T051014Z:3168ec85-f355-437e-8e95-06bbc9a6219a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1509,7 +1815,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:12:32 GMT"
+ "Wed, 22 Jul 2020 05:10:13 GMT"
],
"Expires": [
"-1"
@@ -1522,16 +1828,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1542,22 +1848,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
],
"x-ms-request-id": [
- "1ba92ede-22b4-499c-bd1c-777d9a7df544"
+ "e302a684-7905-4a97-a891-547b877634cd"
],
"x-ms-correlation-request-id": [
- "1ba92ede-22b4-499c-bd1c-777d9a7df544"
+ "e302a684-7905-4a97-a891-547b877634cd"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081248Z:1ba92ede-22b4-499c-bd1c-777d9a7df544"
+ "KOREASOUTH:20200722T051029Z:e302a684-7905-4a97-a891-547b877634cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1566,7 +1872,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:12:48 GMT"
+ "Wed, 22 Jul 2020 05:10:29 GMT"
],
"Expires": [
"-1"
@@ -1579,16 +1885,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1599,22 +1905,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11991"
],
"x-ms-request-id": [
- "93429fce-eb8c-42c0-b61d-d5d60aeacb72"
+ "4ef3dc1c-a8d0-44f9-9410-427b3c605536"
],
"x-ms-correlation-request-id": [
- "93429fce-eb8c-42c0-b61d-d5d60aeacb72"
+ "4ef3dc1c-a8d0-44f9-9410-427b3c605536"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081303Z:93429fce-eb8c-42c0-b61d-d5d60aeacb72"
+ "KOREASOUTH:20200722T051045Z:4ef3dc1c-a8d0-44f9-9410-427b3c605536"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1623,7 +1929,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:13:03 GMT"
+ "Wed, 22 Jul 2020 05:10:45 GMT"
],
"Expires": [
"-1"
@@ -1636,16 +1942,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1656,22 +1962,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-request-id": [
- "285ca270-e4c3-47e8-ab8c-9218636b4163"
+ "479ff368-022e-4d04-afa7-3c339d054ad3"
],
"x-ms-correlation-request-id": [
- "285ca270-e4c3-47e8-ab8c-9218636b4163"
+ "479ff368-022e-4d04-afa7-3c339d054ad3"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081319Z:285ca270-e4c3-47e8-ab8c-9218636b4163"
+ "KOREASOUTH:20200722T051100Z:479ff368-022e-4d04-afa7-3c339d054ad3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1680,7 +1986,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:13:18 GMT"
+ "Wed, 22 Jul 2020 05:11:00 GMT"
],
"Expires": [
"-1"
@@ -1693,16 +1999,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1713,22 +2019,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11989"
],
"x-ms-request-id": [
- "0cf9a0bd-da81-4229-9585-5197922a4ab6"
+ "0c4b2055-f242-4ca2-b623-26ed0f78958f"
],
"x-ms-correlation-request-id": [
- "0cf9a0bd-da81-4229-9585-5197922a4ab6"
+ "0c4b2055-f242-4ca2-b623-26ed0f78958f"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081334Z:0cf9a0bd-da81-4229-9585-5197922a4ab6"
+ "KOREASOUTH:20200722T051116Z:0c4b2055-f242-4ca2-b623-26ed0f78958f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1737,7 +2043,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:13:34 GMT"
+ "Wed, 22 Jul 2020 05:11:15 GMT"
],
"Expires": [
"-1"
@@ -1750,16 +2056,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1770,16 +2076,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11988"
],
"x-ms-request-id": [
- "408a3b4d-3a35-4c2c-b22d-a0e9fcbdd5db"
+ "eed0cfdd-6cc6-43f7-bb50-13717d70a93c"
],
"x-ms-correlation-request-id": [
- "408a3b4d-3a35-4c2c-b22d-a0e9fcbdd5db"
+ "eed0cfdd-6cc6-43f7-bb50-13717d70a93c"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081350Z:408a3b4d-3a35-4c2c-b22d-a0e9fcbdd5db"
+ "KOREASOUTH:20200722T051131Z:eed0cfdd-6cc6-43f7-bb50-13717d70a93c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1788,7 +2094,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:13:49 GMT"
+ "Wed, 22 Jul 2020 05:11:30 GMT"
],
"Expires": [
"-1"
@@ -1801,16 +2107,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgwMzAtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnd016QXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxODUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9EVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28619.01",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -1821,16 +2127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11987"
],
"x-ms-request-id": [
- "7f55ad89-5bb2-4e36-8535-40b89a5b2213"
+ "eeadd707-e169-401b-970f-e938935fde7f"
],
"x-ms-correlation-request-id": [
- "7f55ad89-5bb2-4e36-8535-40b89a5b2213"
+ "eeadd707-e169-401b-970f-e938935fde7f"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200414T081350Z:7f55ad89-5bb2-4e36-8535-40b89a5b2213"
+ "KOREASOUTH:20200722T051132Z:eeadd707-e169-401b-970f-e938935fde7f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1839,7 +2145,7 @@
"nosniff"
],
"Date": [
- "Tue, 14 Apr 2020 08:13:50 GMT"
+ "Wed, 22 Jul 2020 05:11:31 GMT"
],
"Expires": [
"-1"
@@ -1854,9 +2160,9 @@
],
"Names": {
"Test-UpdateKeyVault": [
- "ps8030",
- "ps822",
- "ps5980"
+ "ps9185",
+ "ps4664",
+ "ps716"
]
},
"Variables": {
diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md
index e824ae3398ca..db250078334d 100644
--- a/src/KeyVault/KeyVault/ChangeLog.md
+++ b/src/KeyVault/KeyVault/ChangeLog.md
@@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
+* Added support for RBAC authorization [#10557]
* Enhanced error handling in `Set-AzKeyVaultAccessPolicy` [#4007]
## Version 2.1.0
diff --git a/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs b/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs
index 66833417e49c..375f98e1e16e 100644
--- a/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs
+++ b/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs
@@ -98,6 +98,10 @@ public class NewAzureKeyVault : KeyVaultManagementCmdletBase
HelpMessage = "If specified, protection against immediate deletion is enabled for this vault; requires soft delete to be enabled as well. Enabling 'purge protection' on a key vault is an irreversible action. Once enabled, it cannot be changed or removed.")]
public SwitchParameter EnablePurgeProtection { get; set; }
+ [Parameter(Mandatory = false,
+ HelpMessage = "If specified, enables to authorize data actions by Role Based Access Control (RBAC), and then the access policies specified in vault properties will be ignored. Note that management actions are always authorized with RBAC.")]
+ public SwitchParameter EnableRbacAuthorization { get; set; }
+
[Parameter(Mandatory = false, HelpMessage = "Specifies how long deleted resources are retained, and how long until a vault or an object in the deleted state can be purged. The default is " + Constants.DefaultSoftDeleteRetentionDaysString + " days.")]
[ValidateRange(Constants.MinSoftDeleteRetentionDays, Constants.MaxSoftDeleteRetentionDays)]
[ValidateNotNullOrEmpty]
@@ -168,6 +172,8 @@ public override void ExecuteCmdlet()
EnabledForDiskEncryption = EnabledForDiskEncryption.IsPresent,
EnableSoftDelete = !DisableSoftDelete.IsPresent,
EnablePurgeProtection = EnablePurgeProtection.IsPresent ? true : (bool?)null, // false is not accepted
+ EnableRbacAuthorization = EnableRbacAuthorization.IsPresent,
+
/*
* If soft delete is enabled, but retention days is not specified, use the default value,
* else use the vault user provides,
diff --git a/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs b/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs
index 3a50a5275360..2ff36cf391f4 100644
--- a/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs
+++ b/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs
@@ -350,6 +350,7 @@ public override void ExecuteCmdlet()
EnabledForDiskEncryption.IsPresent ? false : existingVault.EnabledForDiskEncryption,
existingVault.EnableSoftDelete,
existingVault.EnablePurgeProtection,
+ existingVault.EnableRbacAuthorization,
existingVault.SoftDeleteRetentionInDays,
existingVault.NetworkAcls,
ActiveDirectoryClient);
diff --git a/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs b/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs
index 089329c38a29..c9fe206e1f15 100644
--- a/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs
+++ b/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs
@@ -570,6 +570,7 @@ public override void ExecuteCmdlet()
EnabledForDiskEncryption.IsPresent ? true : vault.EnabledForDiskEncryption,
vault.EnableSoftDelete,
vault.EnablePurgeProtection,
+ vault.EnableRbacAuthorization,
vault.SoftDeleteRetentionInDays,
vault.NetworkAcls,
ActiveDirectoryClient);
diff --git a/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs b/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs
index 2a3189b980f2..a388427980a7 100644
--- a/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs
+++ b/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs
@@ -59,6 +59,9 @@ public class UpdateTopLevelResourceCommand : KeyVaultManagementCmdletBase
[Parameter(Mandatory = false, HelpMessage = "Enable the purge protection functionality for this key vault. Once enabled it cannot be disabled. It requires soft-delete to be turned on.")]
public SwitchParameter EnablePurgeProtection { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Enable or disable this key vault to authorize data actions by Role Based Access Control (RBAC).")]
+ public bool? EnableRbacAuthorization { get; set; }
+
[Parameter(Mandatory = false, HelpMessage = "Specifies how long deleted resources are retained, and how long until a vault or an object in the deleted state can be purged. The default is " + Constants.DefaultSoftDeleteRetentionDaysString + " days.")]
[ValidateRange(Constants.MinSoftDeleteRetentionDays, Constants.MaxSoftDeleteRetentionDays)]
[ValidateNotNullOrEmpty]
@@ -103,11 +106,13 @@ public override void ExecuteCmdlet()
existingResource.EnabledForDiskEncryption,
EnableSoftDelete.IsPresent ? (true as bool?) : null,
EnablePurgeProtection.IsPresent ? (true as bool?) : null,
+ EnableRbacAuthorization,
this.IsParameterBound(c => c.SoftDeleteRetentionInDays)
? (SoftDeleteRetentionInDays as int?)
: (existingResource.SoftDeleteRetentionInDays ?? Constants.DefaultSoftDeleteRetentionDays),
existingResource.NetworkAcls
);
+
WriteObject(result);
}
}
diff --git a/src/KeyVault/KeyVault/Commands/VirtualNetworkRuleSet/KeyVaultNetworkRuleSetBase.cs b/src/KeyVault/KeyVault/Commands/VirtualNetworkRuleSet/KeyVaultNetworkRuleSetBase.cs
index aad6a341ec51..035a5ca84560 100644
--- a/src/KeyVault/KeyVault/Commands/VirtualNetworkRuleSet/KeyVaultNetworkRuleSetBase.cs
+++ b/src/KeyVault/KeyVault/Commands/VirtualNetworkRuleSet/KeyVaultNetworkRuleSetBase.cs
@@ -114,6 +114,7 @@ protected PSKeyVault UpdateCurrentVault(PSKeyVault existingVault, PSKeyVaultNetw
existingVault.EnabledForDiskEncryption,
existingVault.EnableSoftDelete,
existingVault.EnablePurgeProtection,
+ existingVault.EnableRbacAuthorization,
existingVault.SoftDeleteRetentionInDays,
updatedNetworkAcls,
ActiveDirectoryClient);
diff --git a/src/KeyVault/KeyVault/KeyVault.format.ps1xml b/src/KeyVault/KeyVault/KeyVault.format.ps1xml
index 6eb262d4d899..633c418164e1 100644
--- a/src/KeyVault/KeyVault/KeyVault.format.ps1xml
+++ b/src/KeyVault/KeyVault/KeyVault.format.ps1xml
@@ -366,6 +366,10 @@
EnabledForDiskEncryption
+
+
+ EnableRbacAuthorization
+
EnableSoftDelete
diff --git a/src/KeyVault/KeyVault/Models/PSKeyVault.cs b/src/KeyVault/KeyVault/Models/PSKeyVault.cs
index 16d8a6cd1026..ff6b44f896c2 100644
--- a/src/KeyVault/KeyVault/Models/PSKeyVault.cs
+++ b/src/KeyVault/KeyVault/Models/PSKeyVault.cs
@@ -50,6 +50,7 @@ public PSKeyVault(Vault vault, ActiveDirectoryClient adClient)
EnabledForDiskEncryption = vault.Properties.EnabledForDiskEncryption;
EnableSoftDelete = vault.Properties.EnableSoftDelete;
EnablePurgeProtection = vault.Properties.EnablePurgeProtection;
+ EnableRbacAuthorization = vault.Properties.EnableRbacAuthorization;
SoftDeleteRetentionInDays = vault.Properties.SoftDeleteRetentionInDays;
AccessPolicies = vault.Properties.AccessPolicies.Select(s => new PSKeyVaultAccessPolicy(s, adClient)).ToArray();
NetworkAcls = InitNetworkRuleSet(vault.Properties);
@@ -72,6 +73,8 @@ public PSKeyVault(Vault vault, ActiveDirectoryClient adClient)
public bool? EnableSoftDelete { get; private set; }
public bool? EnablePurgeProtection { get; private set; }
+
+ public bool? EnableRbacAuthorization { get; private set; }
public int? SoftDeleteRetentionInDays { get; private set; }
diff --git a/src/KeyVault/KeyVault/Models/VaultCreationParameters.cs b/src/KeyVault/KeyVault/Models/VaultCreationParameters.cs
index 440f58f1abde..57dae322b1d8 100644
--- a/src/KeyVault/KeyVault/Models/VaultCreationParameters.cs
+++ b/src/KeyVault/KeyVault/Models/VaultCreationParameters.cs
@@ -31,6 +31,7 @@ public class VaultCreationParameters
public bool EnabledForDiskEncryption { get; set; }
public bool? EnableSoftDelete { get; set; }
public bool? EnablePurgeProtection { get; set; }
+ public bool? EnableRbacAuthorization { get; set; }
public int? SoftDeleteRetentionInDays { get; set; }
public Guid TenantId { get; set; }
public AccessPolicyEntry AccessPolicy { get; set; }
diff --git a/src/KeyVault/KeyVault/Models/VaultManagementClient.cs b/src/KeyVault/KeyVault/Models/VaultManagementClient.cs
index 2b5432eeb3cc..08709ee8cfde 100644
--- a/src/KeyVault/KeyVault/Models/VaultManagementClient.cs
+++ b/src/KeyVault/KeyVault/Models/VaultManagementClient.cs
@@ -86,6 +86,7 @@ public PSKeyVault CreateNewVault(VaultCreationParameters parameters, ActiveDirec
properties.EnabledForDiskEncryption = parameters.EnabledForDiskEncryption;
properties.EnableSoftDelete = parameters.EnableSoftDelete;
properties.EnablePurgeProtection = parameters.EnablePurgeProtection;
+ properties.EnableRbacAuthorization = parameters.EnableRbacAuthorization;
properties.SoftDeleteRetentionInDays = parameters.SoftDeleteRetentionInDays;
properties.TenantId = parameters.TenantId;
properties.VaultUri = "";
@@ -164,6 +165,7 @@ public PSKeyVault UpdateVault(
bool? updatedEnabledForDiskEncryption,
bool? updatedSoftDeleteSwitch,
bool? updatedPurgeProtectionSwitch,
+ bool? updatedRbacAuthorization,
int? softDeleteRetentionInDays,
PSKeyVaultNetworkRuleSet updatedNetworkAcls,
ActiveDirectoryClient adClient = null)
@@ -193,6 +195,9 @@ public PSKeyVault UpdateVault(
&& updatedPurgeProtectionSwitch.Value)
properties.EnablePurgeProtection = updatedPurgeProtectionSwitch;
+ // Update EnableRbacAuthorization when specified, otherwise stay current value
+ properties.EnableRbacAuthorization = updatedRbacAuthorization;
+
properties.AccessPolicies = (updatedPolicies == null) ?
new List() :
updatedPolicies.Select(a => new AccessPolicyEntry
diff --git a/src/KeyVault/KeyVault/help/New-AzKeyVault.md b/src/KeyVault/KeyVault/help/New-AzKeyVault.md
index b8c0d1d65612..920ed7ef510f 100644
--- a/src/KeyVault/KeyVault/help/New-AzKeyVault.md
+++ b/src/KeyVault/KeyVault/help/New-AzKeyVault.md
@@ -16,7 +16,7 @@ Creates a key vault.
```
New-AzKeyVault [-Name] [-ResourceGroupName] [-Location] [-EnabledForDeployment]
[-EnabledForTemplateDeployment] [-EnabledForDiskEncryption] [-DisableSoftDelete] [-EnablePurgeProtection]
- [-SoftDeleteRetentionInDays ] [-Sku ] [-Tag ]
+ [-EnableRbacAuthorization] [-SoftDeleteRetentionInDays ] [-Sku ] [-Tag ]
[-NetworkRuleSet ] [-DefaultProfile ] [-WhatIf] [-Confirm]
[]
```
@@ -211,6 +211,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -EnableRbacAuthorization
+If specified, enables to authorize data actions by Role Based Access Control (RBAC), and then the access policies specified in vault properties will be ignored. Note that management actions are always authorized with RBAC.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Location
Specifies the Azure region in which to create the key vault. Use the command [Get-AzLocation](https://docs.microsoft.com/powershell/module/Azure/Get-AzLocation) to see your choices.
diff --git a/src/KeyVault/KeyVault/help/Update-AzKeyVault.md b/src/KeyVault/KeyVault/help/Update-AzKeyVault.md
index 903820f6f2fc..50fe456e4065 100644
--- a/src/KeyVault/KeyVault/help/Update-AzKeyVault.md
+++ b/src/KeyVault/KeyVault/help/Update-AzKeyVault.md
@@ -15,22 +15,22 @@ Update the state of an Azure key vault.
### UpdateByNameParameterSet (Default)
```
Update-AzKeyVault -ResourceGroupName -VaultName [-EnableSoftDelete] [-EnablePurgeProtection]
- [-SoftDeleteRetentionInDays ] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-EnableRbacAuthorization ] [-SoftDeleteRetentionInDays ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### UpdateByInputObjectParameterSet
```
Update-AzKeyVault -InputObject [-EnableSoftDelete] [-EnablePurgeProtection]
- [-SoftDeleteRetentionInDays ] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-EnableRbacAuthorization ] [-SoftDeleteRetentionInDays ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### UpdateByResourceIdParameterSet
```
Update-AzKeyVault -ResourceId [-EnableSoftDelete] [-EnablePurgeProtection]
- [-SoftDeleteRetentionInDays ] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-EnableRbacAuthorization ] [-SoftDeleteRetentionInDays ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -87,6 +87,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -EnableRbacAuthorization
+Enable or disable this key vault to authorize data actions by Role Based Access Control (RBAC).
+
+```yaml
+Type: System.Nullable`1[System.Boolean]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -EnableSoftDelete
Enable the soft-delete functionality for this key vault.
Once enabled it cannot be disabled.
diff --git a/src/Monitor/Monitor.Test/Monitor.Test.csproj b/src/Monitor/Monitor.Test/Monitor.Test.csproj
index f9fbb974fba9..96cd4c8dc86e 100644
--- a/src/Monitor/Monitor.Test/Monitor.Test.csproj
+++ b/src/Monitor/Monitor.Test/Monitor.Test.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj
index 691aad245616..6763ba3f3520 100644
--- a/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj
+++ b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj
index 7ec80ed40588..fda71167535f 100644
--- a/src/Network/Network.Test/Network.Test.csproj
+++ b/src/Network/Network.Test/Network.Test.csproj
@@ -14,7 +14,7 @@
-
+
diff --git a/src/Network/Network.Test/NrpTeamAlias.cs b/src/Network/Network.Test/NrpTeamAlias.cs
index e01c2d64539a..3cb7c501f650 100644
--- a/src/Network/Network.Test/NrpTeamAlias.cs
+++ b/src/Network/Network.Test/NrpTeamAlias.cs
@@ -64,5 +64,8 @@ class NrpTeamAlias
// Azure Network IPAM dev team
public const string ipam = "ipamdev";
+
+ // Azure Network Billing and Telemetry team
+ public const string billingandtelemetry = "azurenetworkbilling";
}
}
diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs
index 72d1bff43b9f..74ca4917c361 100644
--- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs
+++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs
@@ -104,5 +104,13 @@ public void TestAzureFirewallVirtualHubMultiPublicIPCRUD()
{
TestRunner.RunTestScript("Test-AzureFirewallVirtualHubMultiPublicIPCRUD");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.azurefirewall)]
+ public void TestAzureFirewallCRUDWithAllowActiveFTP()
+ {
+ TestRunner.RunTestScript("Test-AzureFirewallCRUDAllowActiveFTP");
+ }
}
}
diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1
index 37d5bfa09586..aa8f8b745a38 100644
--- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1
+++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1
@@ -1515,4 +1515,49 @@ function Test-AzureFirewallVirtualHubMultiPublicIPCRUD {
# Cleanup
Clean-ResourceGroup $rgname
}
+}
+
+<#
+.SYNOPSIS
+Tests AzureFirewall AllowActiveFTP
+#>
+function Test-AzureFirewallCRUDAllowActiveFTP {
+ $rgname = Get-ResourceGroupName
+ $azureFirewallName = Get-ResourceName
+ $resourceTypeParent = "Microsoft.Network/AzureFirewalls"
+ $location = Get-ProviderLocation $resourceTypeParent "eastus"
+
+ $vnetName = Get-ResourceName
+ $subnetName = "AzureFirewallSubnet"
+ $publicIpName = Get-ResourceName
+
+ try {
+ # Create the resource group
+ $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location
+
+ # Create the Virtual Network
+ $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24
+ $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet
+
+ # Create public ip
+ $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -Sku Standard
+
+ # Create AzureFirewall
+ $azureFirewall = New-AzFirewall -Name $azureFirewallName -ResourceGroupName $rgname -Location $location -AllowActiveFTP
+
+ # Verify
+ $azFirewall = Get-AzFirewall -Name $azureFirewallName -ResourceGroupName $rgname
+ Assert-AreEqual true $azFirewall.AllowActiveFTP
+
+ # Reset the AllowActiveFTP flag
+ $azFirewall.AllowActiveFTP = $false
+ Set-AzFirewall -AzureFirewall $azFirewall
+ $azfw = Get-AzFirewall -Name $azureFirewallName -ResourceGroupName $rgname
+
+ Assert-AreEqual false $azfw.AllowActiveFTP
+ }
+ finally {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
}
\ No newline at end of file
diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.cs b/src/Network/Network.Test/ScenarioTests/CortexTests.cs
index a2974ea47c89..246a9917ce5a 100644
--- a/src/Network/Network.Test/ScenarioTests/CortexTests.cs
+++ b/src/Network/Network.Test/ScenarioTests/CortexTests.cs
@@ -44,7 +44,7 @@ public void TestCortexExpressRouteCRUD()
}
[Fact]
- [Trait(Category.RunType, Category.LiveOnly)]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.Owner, NrpTeamAlias.brooklynft)]
public void TestCortexDownloadConfig()
{
@@ -90,5 +90,21 @@ public void TestVHubRouteTableCRUD()
{
TestRunner.RunTestScript("Test-VHubRouteTableCRUD");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.brooklynft)]
+ public void TestVpnGatewayPacketCapture()
+ {
+ TestRunner.RunTestScript("Test-VpnGatewayPacketCapture");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.brooklynft)]
+ public void TestVpnConnectionPacketCapture()
+ {
+ TestRunner.RunTestScript("Test-VpnConnectionPacketCapture");
+ }
}
}
diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1
index 090a6cadaa92..dfbab23987eb 100644
--- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1
+++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1
@@ -176,6 +176,14 @@ function Test-CortexCRUD
$vpnGatewaysAll = Get-AzureRmVpnGateway
Assert-NotNull $vpnGatewaysAll
+
+ # Reset/Reboot the VpnGateway using Reset-AzVpnGateway
+ $job = Reset-AzVpnGateway -VpnGateway $vpnGateway -AsJob
+ $job | Wait-Job
+ $actual = $job | Receive-Job
+
+ $vpnGateway = Get-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName
+ Assert-AreEqual "Succeeded" $vpnGateway.ProvisioningState
# Create the VpnConnection
$createdVpnConnection = New-AzVpnConnection -ResourceGroupName $rgName -ParentResourceName $vpnGatewayName -Name $vpnConnectionName -VpnSite $vpnSite -ConnectionBandwidth 20 -UseLocalAzureIpAddress
@@ -548,10 +556,9 @@ function Test-CortexExpressRouteCRUD
$vpnClientAddressSpaces = New-Object string[] 2
$vpnClientAddressSpaces[0] = "192.168.2.0/24"
$vpnClientAddressSpaces[1] = "192.168.3.0/24"
- $customDnsServers = New-Object string[] 2
+ $customDnsServers = New-Object string[] 1
$customDnsServers[0] = "7.7.7.7"
- $customDnsServers[1] = "8.8.8.8"
- $createdP2SVpnGateway = New-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName -VirtualHub $virtualHub -VpnGatewayScaleUnit 1 -VpnClientAddressPool $vpnClientAddressSpaces -VpnServerConfiguration $vpnServerConfig1 -CustomDnsServer $customDnsServers
+ $createdP2SVpnGateway = New-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName -VirtualHub $virtualHub -VpnGatewayScaleUnit 1 -VpnClientAddressPool $vpnClientAddressSpaces -VpnServerConfiguration $vpnServerConfig1 -CustomDnsServer $customDnsServers -EnableInternetSecurityFlag
Assert-AreEqual "Succeeded" $createdP2SVpnGateway.ProvisioningState
# Get the created P2SVpnGateway using Get-AzP2sVpnGateway
@@ -560,9 +567,17 @@ function Test-CortexExpressRouteCRUD
Assert-AreEqual $P2SvpnGatewayName $P2SVpnGateway.Name
Assert-AreEqual $vpnServerConfig1.Id $P2SVpnGateway.VpnServerConfiguration.Id
Assert-AreEqual "Succeeded" $P2SVpnGateway.ProvisioningState
- Assert-AreEqual 2 @($P2SVpnGateway.CustomDnsServers).Count
+ Assert-AreEqual 1 @($P2SVpnGateway.CustomDnsServers).Count
Assert-AreEqual "7.7.7.7" $P2SVpnGateway.CustomDnsServers[0]
- Assert-AreEqual "8.8.8.8" $P2SVpnGateway.CustomDnsServers[1]
+ Assert-AreEqual $True $P2SVpnGateway.P2SConnectionConfigurations[0].EnableInternetSecurity
+
+ # Reset/Reboot the P2SVpnGateway using Reset-AzP2sVpnGateway
+ $job = Reset-AzP2sVpnGateway -P2SVpnGateway $P2SVpnGateway -AsJob
+ $job | Wait-Job
+ $actual = $job | Receive-Job
+
+ $P2SVpnGateway = Get-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName
+ Assert-AreEqual "Succeeded" $P2SVpnGateway.ProvisioningState
# Get all associated VpnServerConfigurations at Wan level using Get-AzVirtualWanVpnServerConfiguration
$associatedVpnServerConfigs = Get-AzVirtualWanVpnServerConfiguration -Name $virtualWanName -ResourceGroupName $rgName
@@ -620,7 +635,7 @@ function Test-CortexExpressRouteCRUD
# Update existing P2SVpnGateway with new VpnClientAddressPool and CustomDnsServers using Update-AzP2sVpnGateway
$vpnClientAddressSpaces[1] = "192.168.4.0/24"
- $updatedP2SVpnGateway = Update-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName -VpnClientAddressPool $vpnClientAddressSpaces -CustomDnsServer 9.9.9.9
+ $updatedP2SVpnGateway = Update-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName -VpnClientAddressPool $vpnClientAddressSpaces -CustomDnsServer 9.9.9.9 -DisableInternetSecurityFlag
$P2SVpnGateway = Get-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName
Assert-AreEqual $P2SvpnGatewayName $P2SVpnGateway.Name
@@ -630,6 +645,7 @@ function Test-CortexExpressRouteCRUD
Assert-AreEqual $setVpnClientAddressSpacesString $P2SVpnGateway.P2SConnectionConfigurations[0].VpnClientAddressPool.AddressPrefixes
Assert-AreEqual 1 @($P2SVpnGateway.CustomDnsServers).Count
Assert-AreEqual "9.9.9.9" $P2SVpnGateway.CustomDnsServers[0]
+ Assert-AreEqual $false $P2SVpnGateway.P2SConnectionConfigurations[0].EnableInternetSecurity
# Update existing P2SVpnGateway to remove the CustomDnsServers
$P2SVpnGateway = Get-AzP2sVpnGateway -ResourceGroupName $rgName -Name $P2SvpnGatewayName
@@ -785,6 +801,241 @@ function Test-CortexExpressRouteCRUD
}
}
+<#
+.SYNOPSIS
+create a vpn gateway and start packet capture
+#>
+function Test-VpnGatewayPacketCapture
+{
+ # Setup
+ $rgName = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement "West Central US"
+ $virtualWanName = Get-ResourceName
+ $virtualHubName = Get-ResourceName
+ $vpnGatewayName = Get-ResourceName
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzResourceGroup -Name $rgName -Location $rglocation
+
+ # Create the Virtual Wan
+ $createdVirtualWan = New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic
+ $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName
+ Assert-AreEqual $rgName $virtualWan.ResourceGroupName
+ Assert-AreEqual $virtualWanName $virtualWan.Name
+ Assert-AreEqual $true $virtualWan.AllowVnetToVnetTraffic
+ Assert-AreEqual $true $virtualWan.AllowBranchToBranchTraffic
+
+ # Create the Virtual Hub
+ $createdVirtualHub = New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan
+ $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName
+ Assert-AreEqual $rgName $virtualHub.ResourceGroupName
+ Assert-AreEqual $virtualHubName $virtualHub.Name
+ Assert-AreEqual "10.0.0.0/16" $virtualHub.AddressPrefix
+
+ # Create the VpnGateway
+ $createdVpnGateway = New-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -VirtualHub $virtualHub -VpnGatewayScaleUnit 3
+ Assert-AreEqual $rgName $createdVpnGateway.ResourceGroupName
+ Assert-AreEqual $vpnGatewayName $createdVpnGateway.Name
+ Assert-AreEqual 3 $createdVpnGateway.VpnGatewayScaleUnit
+
+ #create SAS URL
+ if ((Get-NetworkTestMode) -ne 'Playback')
+ {
+ $storetype = 'Standard_GRS'
+ $containerName = "testcontainer"
+ $storeName = 'sto' + $rgname;
+ New-AzStorageAccount -ResourceGroupName $rgname -Name $storeName -Location $rglocation -Type $storetype
+ $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName
+ $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value
+ New-AzStorageContainer -Name $containerName -Context $context
+ $container = Get-AzStorageContainer -Name $containerName -Context $context
+ $now=get-date
+ $sasurl = New-AzStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri
+ }
+ else
+ {
+ $sasurl = "https://storage/test123?sp=racwdl&stvigopKcy"
+ }
+
+ #StartPacketCapture on gateway with Name parameter
+ $output = Start-AzVpnGatewayPacketCapture -ResourceGroupName $rgname -Name $vpnGatewayName
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Name $output.Name
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Location $output.Location
+ Assert-AreEqual $output.Code "Succeeded"
+
+ #StopPacketCapture on gateway with Name parameter
+ $output = Stop-AzVpnGatewayPacketCapture -ResourceGroupName $rgname -Name $vpnGatewayName -SasUrl $sasurl
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Name $output.Name
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Location $output.Location
+ Assert-AreEqual $output.Code "Succeeded"
+
+ #StartPacketCapture on gateway object
+ $a="{`"TracingFlags`":11,`"MaxPacketBufferSize`":120,`"MaxFileSize`":500,`"Filters`":[{`"SourceSubnets`":[`"10.19.0.4/32`",`"10.20.0.4/32`"],`"DestinationSubnets`":[`"10.20.0.4/32`",`"10.19.0.4/32`"],`"IpSubnetValueAsAny`":true,`"TcpFlags`":-1,`"PortValueAsAny`":true,`"CaptureSingleDirectionTrafficOnly`":true}]}"
+ $output = Start-AzVpnGatewayPacketCapture -InputObject $createdVpnGateway -FilterData $a
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Name $output.Name
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Location $output.Location
+ Assert-AreEqual $output.Code "Succeeded"
+
+ #StopPacketCapture on gateway object
+ $output = Stop-AzVpnGatewayPacketCapture -InputObject $createdVpnGateway -SasUrl $sasurl
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Name $output.Name
+ Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName
+ Assert-AreEqual $createdVpnGateway.Location $output.Location
+ Assert-AreEqual $output.Code "Succeeded"
+
+ # Delete the resources
+ $delete = Remove-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -Force -PassThru
+ Assert-AreEqual $True $delete
+
+ $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru
+ Assert-AreEqual $True $delete
+
+ $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru
+ Assert-AreEqual $True $delete
+ }
+ finally
+ {
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+CortexCRUD
+#>
+function Test-VpnConnectionPacketCapture
+{
+ # Setup
+ $rgName = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement "East US"
+
+ $virtualWanName = Get-ResourceName
+ $virtualHubName = Get-ResourceName
+ $vpnSiteName = Get-ResourceName
+ $vpnGatewayName = Get-ResourceName
+ $remoteVirtualNetworkName = Get-ResourceName
+ $vpnConnectionName = Get-ResourceName
+ $hubVnetConnectionName = Get-ResourceName
+ $vpnSiteLink1Name = Get-ResourceName
+ $vpnSiteLink2Name = Get-ResourceName
+ $vpnLink1ConnectionName = Get-ResourceName
+ $vpnLink2ConnectionName = Get-ResourceName
+ $storeName = 'blob' + $rgName
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzResourceGroup -Name $rgName -Location $rglocation
+
+ # Create the Virtual Wan
+ $createdVirtualWan = New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic
+ $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName
+ Assert-AreEqual $rgName $virtualWan.ResourceGroupName
+ Assert-AreEqual $virtualWanName $virtualWan.Name
+
+ # Create the Virtual Hub
+ $createdVirtualHub = New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "192.168.1.0/24" -VirtualWan $virtualWan
+ $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName
+ Assert-AreEqual $rgName $virtualHub.ResourceGroupName
+ Assert-AreEqual $virtualHubName $virtualHub.Name
+ Assert-AreEqual "192.168.1.0/24" $virtualHub.AddressPrefix
+
+ # Create the VpnSite with Links
+ $vpnSiteAddressSpaces = New-Object string[] 2
+ $vpnSiteAddressSpaces[0] = "192.169.2.0/24"
+ $vpnSiteAddressSpaces[1] = "192.169.3.0/24"
+ $vpnSiteLink1 = New-AzVpnSiteLink -Name $vpnSiteLink1Name -IpAddress "5.5.5.5" -LinkProviderName "SomeTelecomProvider1" -LinkSpeedInMbps "10"
+ $vpnSiteLink2 = New-AzVpnSiteLink -Name $vpnSiteLink2Name -IpAddress "5.5.5.6" -LinkProviderName "SomeTelecomProvider2" -LinkSpeedInMbps "10"
+
+ $createdVpnSite = New-AzVpnSite -ResourceGroupName $rgName -Name $vpnSiteName -Location $rglocation -VirtualWan $virtualWan -AddressSpace $vpnSiteAddressSpaces -DeviceModel "SomeDevice" -DeviceVendor "SomeDeviceVendor" -VpnSiteLink @($vpnSiteLink1, $vpnSiteLink2)
+ Assert-AreEqual $rgName $createdVpnSite.ResourceGroupName
+ Assert-AreEqual $vpnSiteName $createdVpnSite.Name
+ Assert-AreEqual 2 $createdVpnSite.VpnSiteLinks.Count
+
+ # Create the VpnGateway
+ $createdVpnGateway = New-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -VirtualHub $virtualHub -VpnGatewayScaleUnit 3
+ Assert-AreEqual $rgName $createdVpnGateway.ResourceGroupName
+ Assert-AreEqual $vpnGatewayName $createdVpnGateway.Name
+ Assert-AreEqual 3 $createdVpnGateway.VpnGatewayScaleUnit
+
+
+ # Create the VpnConnection with site with links
+ $vpnSiteLinkConnection1 = New-AzVpnSiteLinkConnection -Name $vpnLink1ConnectionName -VpnSiteLink $createdVpnSite.VpnSiteLinks[0] -ConnectionBandwidth 100
+ $vpnSiteLinkConnection2 = New-AzVpnSiteLinkConnection -Name $vpnLink2ConnectionName -VpnSiteLink $createdVpnSite.VpnSiteLinks[1] -ConnectionBandwidth 10
+
+ $createdVpnConnection = New-AzVpnConnection -ResourceGroupName $rgName -ParentResourceName $vpnGatewayName -Name $vpnConnectionName -VpnSite $createdVpnSite -VpnSiteLinkConnection @($vpnSiteLinkConnection1, $vpnSiteLinkConnection2)
+
+ #create SAS URL
+ if ((Get-NetworkTestMode) -ne 'Playback')
+ {
+ $storetype = 'Standard_GRS'
+ $containerName = "testcontainer"
+ $storeName = 'sto2' + $rgname;
+ New-AzStorageAccount -ResourceGroupName $rgname -Name $storeName -Location $rglocation -Type $storetype
+ $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName
+ $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value
+ New-AzStorageContainer -Name $containerName -Context $context
+ $container = Get-AzStorageContainer -Name $containerName -Context $context
+ $now=get-date
+ $sasurl = New-AzStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri
+ }
+ else
+ {
+ $sasurl = "https://storage/test123?sp=racwdl&stvigopKcy"
+ }
+
+ $SiteLinkConnections = $vpnSiteLinkConnection1.Name + "," + $vpnSiteLinkConnection2.Name
+ # StartPacketCapture on VpnConnection with Name parameter
+ $output = Start-AzVpnConnectionPacketCapture -ResourceGroupName $rgname -Name $vpnConnectionName -ParentResourceName $vpnGatewayName -LinkConnectionName $SiteLinkConnections
+ Assert-AreEqual $createdVpnConnection.Name $output.Name
+ Assert-AreEqual $output.Code "Succeeded"
+
+ #StopPacketCapture on VpnConnection with Name parameter
+ $output = Stop-AzVpnConnectionPacketCapture -ResourceGroupName $rgname -Name $vpnConnectionName -ParentResourceName $vpnGatewayName -SasUrl $sasurl -LinkConnectionName $SiteLinkConnections
+ Assert-AreEqual $createdVpnConnection.Name $output.Name
+ Assert-AreEqual $output.Code "Succeeded"
+
+ #StartPacketCapture on gateway object with filterData
+ $a="{`"TracingFlags`":11,`"MaxPacketBufferSize`":120,`"MaxFileSize`":500,`"Filters`":[{`"SourceSubnets`":[`"10.19.0.4/32`",`"10.20.0.4/32`"],`"DestinationSubnets`":[`"10.20.0.4/32`",`"10.19.0.4/32`"],`"IpSubnetValueAsAny`":true,`"TcpFlags`":-1,`"PortValueAsAny`":true,`"CaptureSingleDirectionTrafficOnly`":true}]}"
+ $output = Start-AzVpnConnectionPacketCapture -InputObject $createdVpnConnection -FilterData $a -LinkConnectionName $SiteLinkConnections
+ Assert-AreEqual $createdVpnConnection.Name $output.Name
+ Assert-AreEqual $output.Code "Succeeded"
+
+ #StopPacketCapture on gateway object
+ $output = Stop-AzVpnConnectionPacketCapture -InputObject $createdVpnConnection -SasUrl $sasurl -LinkConnectionName $SiteLinkConnections
+ Assert-AreEqual $createdVpnConnection.Name $output.Name
+ Assert-AreEqual $output.Code "Succeeded"
+
+ $delete = Remove-AzVpnConnection -ResourceGroupName $rgName -ParentResourceName $vpnGatewayName -Name $vpnConnectionName -Force -PassThru
+ Assert-AreEqual $True $delete
+
+ $delete = Remove-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -Force -PassThru
+ Assert-AreEqual $True $delete
+
+ $delete = Remove-AzVpnSite -ResourceGroupName $rgName -Name $vpnSiteName -Force -PassThru
+ Assert-AreEqual $True $delete
+
+ $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru
+ Assert-AreEqual $True $delete
+
+ $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru
+ Assert-AreEqual $True $delete
+ }
+ finally
+ {
+ Clean-ResourceGroup $rgname
+ }
+}
+
<#
.SYNOPSIS
Disconnect site to site vpn gateway BgpSettings
diff --git a/src/Network/Network.Test/ScenarioTests/CustomIpPrefixTests.cs b/src/Network/Network.Test/ScenarioTests/CustomIpPrefixTests.cs
new file mode 100644
index 000000000000..e78ab7c7c2c8
--- /dev/null
+++ b/src/Network/Network.Test/ScenarioTests/CustomIpPrefixTests.cs
@@ -0,0 +1,37 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Network.Test.ScenarioTests;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Xunit;
+
+namespace Commands.Network.Test.ScenarioTests
+{
+
+ public class CustomIpPrefixTests : NetworkTestRunner
+ {
+ public CustomIpPrefixTests(Xunit.Abstractions.ITestOutputHelper output)
+ : base(output)
+ {
+ }
+
+ [Fact(Skip = "Resource currently in private preview, testing requires very specific conditions, will implement these tests in future.")]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.billingandtelemetry)]
+ public void TestCustomIpPrefixCRUD()
+ {
+ TestRunner.RunTestScript("Test-CustomIpPrefixCRUD");
+ }
+ }
+}
diff --git a/src/Network/Network.Test/ScenarioTests/CustomIpPrefixTests.ps1 b/src/Network/Network.Test/ScenarioTests/CustomIpPrefixTests.ps1
new file mode 100644
index 000000000000..5a6eb17630f5
--- /dev/null
+++ b/src/Network/Network.Test/ScenarioTests/CustomIpPrefixTests.ps1
@@ -0,0 +1,117 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Tests CRUD operations on a simple customIpPrefix.
+
+NOTE: This feature is currently in private preview, so updated binaries are on test slice in canary only and is currently un-reacheable via the production manifest.
+Testing has been done locally using the brazilus ARM endpoint and a specific subscription that has the necessary flags to run these cmdlets.
+#>
+function Test-CustomIpPrefixCRUD
+{
+ # Setup
+ $rgname = "powershell-test-rg"
+ $rname = "testCustomIpPrefix"
+ $location = "eastus2euap"
+ $cidr = "40.40.40.0/24"
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation
+
+ # Create customIpPrefix
+ $job = New-AzCustomIpPrefix -Name $rname -ResourceGroupName $rgname -location $location -Cidr $cidr -AsJob
+ $job | Wait-Job
+ $job | Receive-Job
+
+ # get by name and resource group
+ $actual = Get-AzCustomIpPrefix -ResourceGroupName $rgname -name $rname
+ Assert-AreEqual $actual.ResourceGroupName $rgname
+ Assert-AreEqual $actual.Name $rname
+ Assert-AreEqual $actual.Location $location
+ Assert-AreEqual $actual.Cidr $cidr
+ Assert-AreEqual $actual.PublicIpPrefixes.Count 0
+ Assert-NotNull $actual.ResourceGuid
+ Assert-AreEqual $actual.ProvisioningState "Succeeded"
+
+ # get by resource id
+ $actual = Get-AzCustomIpPrefix -ResourceId $actual.Id
+ Assert-AreEqual $actual.ResourceGroupName $rgname
+ Assert-AreEqual $actual.Name $rname
+ Assert-AreEqual $actual.Location $location
+ Assert-AreEqual $actual.Cidr $cidr
+ Assert-AreEqual $actual.PublicIpPrefixes.Count 0
+ Assert-NotNull $actual.ResourceGuid
+ Assert-AreEqual $actual.ProvisioningState "Succeeded"
+
+ # get by input object
+ $actual = Get-AzCustomIpPrefix -InputObject $actual
+ Assert-AreEqual $actual.ResourceGroupName $rgname
+ Assert-AreEqual $actual.Name $rname
+ Assert-AreEqual $actual.Location $location
+ Assert-AreEqual $actual.Cidr $cidr
+ Assert-AreEqual $actual.PublicIpPrefixes.Count 0
+ Assert-NotNull $actual.ResourceGuid
+ Assert-AreEqual $actual.ProvisioningState "Succeeded"
+
+ # list
+ $list = Get-AzCustomIpPrefix -ResourceGroupName $rgname
+ Assert-AreEqual 1 @($list).Count
+ Assert-AreEqual $list[0].ResourceGroupName $actual.ResourceGroupName
+ Assert-AreEqual $list[0].Name $actual.Name
+ Assert-AreEqual $list[0].Location $actual.Location
+ Assert-AreEqual $list[0].Cidr $actual.Cidr
+ Assert-AreEqual $list[0].PublicIpPrefixes.Count 0
+ Assert-AreEqual $list[0].ProvisioningState "Succeeded"
+
+ # delete
+ $job = Remove-AzCustomIpPrefix -InputObject $actual -PassThru -Force -AsJob
+ $job | Wait-Job
+ $delete = $job | Receive-Job
+ Assert-AreEqual true $delete
+
+ $list = Get-AzPublicIpPrefix -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
+
+ # Try setting unexisting
+ Assert-ThrowsLike { Update-AzPublicIpPrefix -PublicIpPrefix $expected } "*not found*"
+
+ # Create one more time to test deletion with resource id parameter set
+ $job = New-AzCustomIpPrefix -Name $rname -ResourceGroupName $rgname -location $location -Cidr $cidr -AsJob
+ $job | Wait-Job
+ $expected = $job | Receive-Job
+
+ $job = Remove-AzPublicIpPrefix -ResourceId $expected.Id -PassThru -Force -AsJob
+ $job | Wait-Job
+ $delete = $job | Receive-Job
+ Assert-AreEqual true $delete
+
+ # Create one more time to test deletion with resource group and name
+ $job = New-AzCustomIpPrefix -Name $rname -ResourceGroupName $rgname -location $location -Cidr $cidr -AsJob
+ $job | Wait-Job
+ $expected = $job | Receive-Job
+
+ $job = Remove-AzPublicIpPrefix -Name $rname -ResourceGroupName $rgname
+ $job | Wait-Job
+ $delete = $job | Receive-Job
+ Assert-AreEqual true $delete
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs b/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs
index 34ab4f2fce26..70a25c4166c4 100644
--- a/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs
+++ b/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs
@@ -57,6 +57,7 @@ protected NetworkTestRunner(ITestOutputHelper output)
{"Microsoft.Compute", null},
{"Microsoft.Features", null},
{"Microsoft.Authorization", null},
+ {"Microsoft.Network", null},
{"Microsoft.Storage", null},
{"Microsoft.Sql", null},
{"Microsoft.KeyVault", null},
diff --git a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs
index e883eae1867c..5d1fa0ec473c 100644
--- a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs
+++ b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs
@@ -66,7 +66,7 @@ public void TestPacketCapture()
}
[Fact]
- [Trait(Category.RunType, Category.LiveOnly)]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.Owner, NrpTeamAlias.netanalyticsdev)]
public void TestTroubleshoot()
{
@@ -74,7 +74,7 @@ public void TestTroubleshoot()
}
[Fact]
- [Trait(Category.RunType, Category.LiveOnly)]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.Owner, NrpTeamAlias.netanalyticsdev)]
public void TestFlowLog()
{
@@ -123,7 +123,7 @@ public void TestNetworkConfigurationDiagnostic()
}
[Fact]
- [Trait(Category.RunType, Category.LiveOnly)]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.Owner, NrpTeamAlias.netanalyticsdev)]
public void TestCRUDFlowLog()
{
diff --git a/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.cs b/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.cs
index fda2bac84230..9dc4cf89b77e 100644
--- a/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.cs
+++ b/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.cs
@@ -50,8 +50,8 @@ public void TestVirtualNetworkSubnetCRUD()
TestRunner.RunTestScript("Test-subnetCRUD");
}
- [Fact]
- [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Fact(Skip = "Authentication failed for auxiliary token: The '1' auxiliary tokens contains duplicates which are from the same tenant.")]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.Owner, NrpTeamAlias.sdnnrp)]
public void TestVirtualNetworkBgpCommunitiesCRUD()
{
@@ -83,7 +83,7 @@ public void TestVirtualNetworkPeeringCRUD()
}
[Fact(Skip ="We need to update the way tokens are aquired, as of now aquiring tokens for multiple tenants is broken")]
- [Trait(Category.RunType, Category.LiveOnly)]
+ [Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.Owner, NrpTeamAlias.sdnnrp)]
public void TestMultiTenantVNetPCRUD()
{
diff --git a/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.ps1 b/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.ps1
index 34aebb124658..493b4b83fb5e 100644
--- a/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.ps1
+++ b/src/Network/Network.Test/ScenarioTests/VirtualNetworkTests.ps1
@@ -211,7 +211,10 @@ function Test-bgpCommunitiesCRUD
{
# Setup
$rgname = Get-ResourceGroupName
- $vnetName = Get-ResourceName
+ $vnet1Name = Get-ResourceName
+ $vnet2Name = Get-ResourceName
+ $peering1Name = Get-ResourceName
+ $peering2Name = Get-ResourceName
$rglocation = Get-ProviderLocation ResourceManagement
$resourceTypeParent = "Microsoft.Network/virtualNetworks"
$location = Get-ProviderLocation $resourceTypeParent "eastus2euap"
@@ -221,20 +224,37 @@ function Test-bgpCommunitiesCRUD
# Create the resource group
$resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" }
- # Create q virtual network with a BGP community
- New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -BgpCommunity 12076:30000
-
- # Get the virtual network and verify that the community is set to the expected value
- $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname
- Assert-AreEqual "12076:30000" $vnet.BgpCommunities.VirtualNetworkCommunity
-
- # Update the virtual network with a different BGP community
- $vnet.BgpCommunities.VirtualNetworkCommunity = "12076:30001"
- $vnet | Set-AzVirtualNetwork
-
- # Get the virtual network and verify that the community is set to the new value
- $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname
- Assert-AreEqual "12076:30001" $vnet.BgpCommunities.VirtualNetworkCommunity
+ # Create two virtual networks with BGP communities
+ New-AzVirtualNetwork -Name $vnet1Name -ResourceGroupName $rgname -Location $location -AddressPrefix 10.1.0.0/16 -BgpCommunity 12076:20001
+ New-AzVirtualNetwork -Name $vnet2Name -ResourceGroupName $rgname -Location $location -AddressPrefix 10.2.0.0/16 -BgpCommunity 12076:20002
+
+ # Perform GET operations to retrieve both virtual networks and verify that the VirtualNetworkCommunity is set to the expected value
+ $vnet1 = Get-AzVirtualNetwork -Name $vnet1Name -ResourceGroupName $rgname
+ $vnet2 = Get-AzVirtualNetwork -Name $vnet2Name -ResourceGroupName $rgname
+ Assert-AreEqual "12076:20001" $vnet1.BgpCommunities.VirtualNetworkCommunity
+ Assert-AreEqual "12076:20002" $vnet2.BgpCommunities.VirtualNetworkCommunity
+
+ # Update the VirtualNetworkCommunity on both virtual networks
+ $vnet1.BgpCommunities.VirtualNetworkCommunity = "12076:20111"
+ $vnet2.BgpCommunities.VirtualNetworkCommunity = "12076:20222"
+ $vnet1 | Set-AzVirtualNetwork
+ $vnet2 | Set-AzVirtualNetwork
+
+ # Perform GET operations to retrieve both virtual networks and verify that the VirtualNetworkCommunity is set to the expected value
+ $vnet1 = Get-AzVirtualNetwork -Name $vnet1Name -ResourceGroupName $rgname
+ $vnet2 = Get-AzVirtualNetwork -Name $vnet2Name -ResourceGroupName $rgname
+ Assert-AreEqual "12076:20111" $vnet1.BgpCommunities.VirtualNetworkCommunity
+ Assert-AreEqual "12076:20222" $vnet2.BgpCommunities.VirtualNetworkCommunity
+
+ # Peer both virtual networks
+ Add-AzVirtualNetworkPeering -Name $peering1Name -VirtualNetwork $vnet1 -RemoteVirtualNetworkId $vnet2.Id
+ Add-AzVirtualNetworkPeering -Name $peering2Name -VirtualNetwork $vnet2 -RemoteVirtualNetworkId $vnet1.Id
+
+ # Perform GET operations to retrieve both virtual networks and validate the RemoteBgpCommunity property on the child peering resource
+ $vnet1 = Get-AzVirtualNetwork -Name $vnet1Name -ResourceGroupName $rgname
+ $vnet2 = Get-AzVirtualNetwork -Name $vnet2Name -ResourceGroupName $rgname
+ Assert-AreEqual "12076:20222" $vnet1.VirtualNetworkPeerings[0].RemoteBgpCommunities.VirtualNetworkCommunity
+ Assert-AreEqual "12076:20111" $vnet2.VirtualNetworkPeerings[0].RemoteBgpCommunities.VirtualNetworkCommunity
}
finally
{
diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs
index 4c7b7fdaca2e..bca79d5c13c6 100644
--- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs
+++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs
@@ -25,12 +25,20 @@ public VirtualRouterTests(Xunit.Abstractions.ITestOutputHelper output)
{
}
- [Fact(Skip = "Fails with Internal Server Error")]
+ [Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
[Trait(Category.Owner, NrpTeamAlias.pgtm)]
public void TestVirtualRouterCRUDMinimalParameters()
{
TestRunner.RunTestScript(string.Format("Test-VirtualRouterCRUD"));
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.pgtm)]
+ public void TestVirtualRouterPeerCRUD()
+ {
+ TestRunner.RunTestScript(string.Format("Test-VirtualRouterPeerCRUD"));
+ }
}
}
diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1
index 6df5846e2790..8d126b6edfa7 100644
--- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1
+++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1
@@ -32,69 +32,101 @@ function Test-VirtualRouterCRUD
{
# Setup
$rgname = Get-ResourceGroupName
- $rname = Get-ResourceName
- $domainNameLabel = Get-ResourceName
$vnetName = Get-ResourceName
- $publicIpName = Get-ResourceName
- $vnetGatewayConfigName = Get-ResourceName
- $rglocation = Get-ProviderLocation ResourceManagement "southcentralus"
- $resourceTypeParent = "Microsoft.Network/virtualNetworkGateways"
- $location = Get-ProviderLocation $resourceTypeParent "southcentralus"
- $virtualRouterName = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement "centraluseuap"
+ $virtualRouterName = Get-ResourceName
+ $subnetName = Get-ResourceName
try
{
# Create the resource group
$resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" }
-
-
+
# Create the Virtual Network
- $subnet = New-AzVirtualNetworkSubnetConfig -Name "GatewaySubnet" -AddressPrefix 10.0.0.0/24
- $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet
+ $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24
+ $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $rglocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet
$vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname
- $subnet = Get-AzVirtualNetworkSubnetConfig -Name "GatewaySubnet" -VirtualNetwork $vnet
-
- # Create the publicip
- $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Dynamic -DomainNameLabel $domainNameLabel
-
- # Create & Get virtualnetworkgateway
- $vnetIpConfig = New-AzVirtualNetworkGatewayIpConfig -Name $vnetGatewayConfigName -PublicIpAddress $publicip -Subnet $subnet
-
- $actual = New-AzVirtualNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -IpConfigurations $vnetIpConfig -GatewayType ExpressRoute -GatewaySku HighPerformance -VpnType RouteBased -VpnGatewayGeneration None -Force
- $expected = Get-AzVirtualNetworkGateway -ResourceGroupName $rgname -name $rname
- Assert-AreEqual $expected.ResourceGroupName $actual.ResourceGroupName
- Assert-AreEqual $expected.Name $actual.Name
- Assert-AreEqual "ExpressRoute" $expected.GatewayType
- Assert-AreEqual "None" $expected.VpnGatewayGeneration
-
- # Create Virtual Router
- $actualvr = New-AzVirtualRouter -ResourceGroupName $rgname -location $location -Name $virtualRouterName -HostedGateway $expected
- $expectedvr = Get-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName
- Assert-AreEqual $expectedvr.ResourceGroupName $actualvr.ResourceGroupName
+ $hostedSubnet = Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet
+
+ # Create Virtual Router
+ $actualvr = New-AzVirtualRouter -ResourceGroupName $rgname -location $rglocation -Name $virtualRouterName -HostedSubnet $hostedsubnet.Id
+ $expectedvr = Get-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName
+ Assert-AreEqual $expectedvr.ResourceGroupName $actualvr.ResourceGroupName
Assert-AreEqual $expectedvr.Name $actualvr.Name
-
- # List Virtual Routers
- $list = Get-AzVirtualRouter -ResourceGroupName $rgname
+ Assert-AreEqual $expectedvr.Location $actualvr.Location
+
+ # List Virtual Routers
+ $list = Get-AzVirtualRouter -ResourceGroupName $rgname
Assert-AreEqual 1 @($list).Count
Assert-AreEqual $list[0].ResourceGroupName $actualvr.ResourceGroupName
Assert-AreEqual $list[0].Name $actualvr.Name
Assert-AreEqual $list[0].Location $actualvr.Location
+
+ # Delete VR
+ $deletevr = Remove-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName -PassThru -Force
+ Assert-AreEqual true $deletevr
+
+ $list = Get-AzVirtualRouter -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Test creating new virtualRouterPeer
+#>
+function Test-VirtualRouterPeerCRUD
+{
+ # Setup
+ $rgname = Get-ResourceGroupName
+ $vnetName = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement "centraluseuap"
+ $virtualRouterName = Get-ResourceName
+ $virtualWanName = Get-ResourceName
+ $subnetName = Get-ResourceName
+ $peerName = Get-ResourceName
- # Delete VR
- $deletevR = Remove-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName -PassThru -Force
- Assert-AreEqual true $deletevR
+ try
+ {
+ # Create resource group
+ $resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" }
+
+ # Create virtual network and subnet
+ $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24
+ $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $rglocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet
+ $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname
+ $hostedSubnet = Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet
+
+ # Create virtual router
+ $virtualRouter = New-AzVirtualRouter -ResourceGroupName $rgname -location $rglocation -Name $virtualRouterName -HostedSubnet $hostedsubnet.Id
+ $virtualRouter = Get-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName
+
+ # Create hub bgp connection
+ $actualBgpConnection = Add-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -PeerIp "192.168.1.5" -PeerAsn "20000"
+ $expectedBgpConnection = Get-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName
+ Assert-AreEqual $expectedBgpConnection.Peerings.PeerName $actualBgpConnection.PeerName
+ Assert-AreEqual $expectedBgpConnection.PeerIp "192.168.1.5"
+ Assert-AreEqual $expectedBgpConnection.PeerAsn "20000"
- # Delete virtualNetworkGateway
- $delete = Remove-AzVirtualNetworkGateway -ResourceGroupName $actual.ResourceGroupName -name $rname -PassThru -Force
- Assert-AreEqual true $delete
+ #delete hub bgp connection
+ $deleteBgpConnection = Remove-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -Force
+ Assert-AreEqual 0 @($deleteBgpConnection.Peerings).Count
- $list = Get-AzVirtualRouter -ResourceGroupName $rgname
- Assert-AreEqual 0 @($list).Count
+ # Delete virtual router
+ $deleteVirtualRouter = Remove-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName -PassThru -Force
+ Assert-AreEqual true $deleteVirtualRouter
+
+ $list = Get-AzVirtualRouter -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
}
finally
{
# Cleanup
Clean-ResourceGroup $rgname
}
-}
-
+}
\ No newline at end of file
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUDWithAllowActiveFTP.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUDWithAllowActiveFTP.json
new file mode 100644
index 000000000000..38b2d45d3afc
--- /dev/null
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUDWithAllowActiveFTP.json
@@ -0,0 +1,2089 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d89c2037-3035-47f7-816c-5360484e0355"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "c2757288-ee77-41fd-9519-f838617ef08d"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2757288-ee77-41fd-9519-f838617ef08d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225400Z:c2757288-ee77-41fd-9519-f838617ef08d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:53:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "80016"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualAppliances\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualApplianceSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps8566?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzODU2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad8bc907-852d-45f4-bbf5-aa8bab7ab02f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "5db898b2-9006-4f33-86ec-a8ef1e638112"
+ ],
+ "x-ms-correlation-request-id": [
+ "5db898b2-9006-4f33-86ec-a8ef1e638112"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225401Z:5db898b2-9006-4f33-86ec-a8ef1e638112"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:00 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566\",\r\n \"name\": \"ps8566\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjEzOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "394e9b88-4e62-4185-9d36-f261a116d1a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "999617cd-64e7-4c18-967d-4aa0ff96116c"
+ ],
+ "x-ms-correlation-request-id": [
+ "999617cd-64e7-4c18-967d-4aa0ff96116c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225401Z:999617cd-64e7-4c18-967d-4aa0ff96116c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "218"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps2139' under resource group 'ps8566' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjEzOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f725a04e-38f1-490c-ae56-0d595c6e0541\""
+ ],
+ "x-ms-request-id": [
+ "b12f3b05-4a3c-487e-bd80-7c4cef05d20c"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7afb6e9-064a-47a9-b1c1-24d89782e8ba"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bf9a2aef-193e-42b4-a7da-8e5593f5084e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225410Z:c7afb6e9-064a-47a9-b1c1-24d89782e8ba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:10 GMT"
+ ],
+ "Content-Length": [
+ "1294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2139\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139\",\r\n \"etag\": \"W/\\\"f725a04e-38f1-490c-ae56-0d595c6e0541\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df4a942d-8490-4cfd-8369-01bbaa23d4b5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"f725a04e-38f1-490c-ae56-0d595c6e0541\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjEzOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d66ac5fb-c3b7-47ce-bf38-6373528b8210"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f725a04e-38f1-490c-ae56-0d595c6e0541\""
+ ],
+ "x-ms-request-id": [
+ "bef06712-e1a0-4872-a0a3-a56574bb5f9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd8139fc-e766-4d14-b61a-8189c9f7e96e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "88cd9980-72bc-4462-bcd0-31236eed82a6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225410Z:fd8139fc-e766-4d14-b61a-8189c9f7e96e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:10 GMT"
+ ],
+ "Content-Length": [
+ "1294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2139\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139\",\r\n \"etag\": \"W/\\\"f725a04e-38f1-490c-ae56-0d595c6e0541\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df4a942d-8490-4cfd-8369-01bbaa23d4b5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"f725a04e-38f1-490c-ae56-0d595c6e0541\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjEzOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"AzureFirewallSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4940a129-ca99-484c-b782-0f2747b5212b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "690"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "3"
+ ],
+ "x-ms-request-id": [
+ "f49001e3-4d29-4ebe-91a2-393d4d90ae1d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/f49001e3-4d29-4ebe-91a2-393d4d90ae1d?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2ecad7d-c259-494a-a5db-855db26b9dfe"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0b814638-0616-44be-8f48-618f7bc545d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225407Z:a2ecad7d-c259-494a-a5db-855db26b9dfe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:06 GMT"
+ ],
+ "Content-Length": [
+ "1292"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2139\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139\",\r\n \"etag\": \"W/\\\"79d91075-31fa-40ab-b538-352e03444bac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"df4a942d-8490-4cfd-8369-01bbaa23d4b5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/virtualNetworks/ps2139/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"79d91075-31fa-40ab-b538-352e03444bac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/f49001e3-4d29-4ebe-91a2-393d4d90ae1d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjQ5MDAxZTMtNGQyOS00ZWJlLTkxYTItMzkzZDRkOTBhZTFkP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "52694d6a-2e4b-4691-bc5b-cef40165e2b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f9dac2f-cd1e-4f51-b174-554c2029ae2b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "09d5b487-b0be-425d-9d88-fed78d3e58ca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225410Z:2f9dac2f-cd1e-4f51-b174-554c2029ae2b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:10 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMTA1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f25b367-0245-43f2-9ff3-0aacbd846295"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "cb7faefa-3b75-4e65-bbfb-bae762d27515"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb7faefa-3b75-4e65-bbfb-bae762d27515"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225411Z:cb7faefa-3b75-4e65-bbfb-bae762d27515"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "220"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps1105' under resource group 'ps8566' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMTA1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"9f8403a0-3d1b-4cd3-8817-368ffc0b801a\""
+ ],
+ "x-ms-request-id": [
+ "8a7632ce-d4dd-4b5a-a9d8-b798e05b271d"
+ ],
+ "x-ms-correlation-request-id": [
+ "693fc9c4-5d00-4fd8-bca0-83bee1c00953"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c3ed19ca-91ed-4502-8725-166a5ec9956c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225415Z:693fc9c4-5d00-4fd8-bca0-83bee1c00953"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:14 GMT"
+ ],
+ "Content-Length": [
+ "628"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1105\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105\",\r\n \"etag\": \"W/\\\"9f8403a0-3d1b-4cd3-8817-368ffc0b801a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d51e466d-ec22-404d-973c-61770a85007e\",\r\n \"ipAddress\": \"40.71.239.21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMTA1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8367dd59-53dd-4336-8dd0-e01342784b01"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"9f8403a0-3d1b-4cd3-8817-368ffc0b801a\""
+ ],
+ "x-ms-request-id": [
+ "0198122d-f15d-43d6-8d4e-4212cd0f56c4"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6d879db-4200-4853-8cb7-7c981c533e4e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "42b8ce54-2873-4b9d-b0be-a13ad3d0193f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225415Z:a6d879db-4200-4853-8cb7-7c981c533e4e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:15 GMT"
+ ],
+ "Content-Length": [
+ "628"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1105\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105\",\r\n \"etag\": \"W/\\\"9f8403a0-3d1b-4cd3-8817-368ffc0b801a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d51e466d-ec22-404d-973c-61770a85007e\",\r\n \"ipAddress\": \"40.71.239.21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMTA1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1860c5da-7b4b-4a1f-abb1-f8ca9a7c0fbd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "172"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "284d8830-35d0-4262-970b-7eee16ab93d3"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/284d8830-35d0-4262-970b-7eee16ab93d3?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "681508bf-e456-4e7a-a914-a9a821c05201"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4e33f0a4-01fa-4e99-b17a-92d535fe5e7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225414Z:681508bf-e456-4e7a-a914-a9a821c05201"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:13 GMT"
+ ],
+ "Content-Length": [
+ "593"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1105\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/publicIPAddresses/ps1105\",\r\n \"etag\": \"W/\\\"9ad6b466-b944-4361-8fc3-aee9298ae40e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d51e466d-ec22-404d-973c-61770a85007e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/284d8830-35d0-4262-970b-7eee16ab93d3?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjg0ZDg4MzAtMzVkMC00MjYyLTk3MGItN2VlZTE2YWI5M2QzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8a4c296a-45e5-48aa-9bf0-273b2363b441"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e068989-2eae-4915-b4c9-85b8b3204c21"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f9655999-a044-4db4-a04e-04bbff1286be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225415Z:9e068989-2eae-4915-b4c9-85b8b3204c21"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:14 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ad8bf38-a4a2-450d-af1b-65069f7d939b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "143cf2b6-88a3-4282-99b6-70b2441b171e"
+ ],
+ "x-ms-correlation-request-id": [
+ "143cf2b6-88a3-4282-99b6-70b2441b171e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225415Z:143cf2b6-88a3-4282-99b6-70b2441b171e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "217"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/ps6896' under resource group 'ps8566' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"df0cf574-152b-4bc5-9d11-5720b7a6245c\""
+ ],
+ "x-ms-request-id": [
+ "8c93174c-2fd7-4e55-b348-28d314099e26"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f7a41e5-1f52-4ade-a1b4-a7c215ce8913"
+ ],
+ "x-ms-arm-service-request-id": [
+ "52782b47-6c9c-4acf-a1b9-6bad0579cc19"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225429Z:9f7a41e5-1f52-4ade-a1b4-a7c215ce8913"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:28 GMT"
+ ],
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"df0cf574-152b-4bc5-9d11-5720b7a6245c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"true\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9ef7e09-7e08-4e4f-8db9-04ee400c70e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"df0cf574-152b-4bc5-9d11-5720b7a6245c\""
+ ],
+ "x-ms-request-id": [
+ "768e05c5-9430-4fbe-9aee-73821bf30e42"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cc56434-4596-4898-9860-06971c4f98b7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a235d41f-0171-4266-9dcb-c97fe17f915e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225429Z:1cc56434-4596-4898-9860-06971c4f98b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:28 GMT"
+ ],
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"df0cf574-152b-4bc5-9d11-5720b7a6245c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"true\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cebcb1ba-a69d-4888-ba72-9f77ed6dc5c9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"df0cf574-152b-4bc5-9d11-5720b7a6245c\""
+ ],
+ "x-ms-request-id": [
+ "cfee60c8-5a21-4bc9-8f39-fd4b6a6ce7ab"
+ ],
+ "x-ms-correlation-request-id": [
+ "44dc3cda-5561-45ee-ba0e-439b8693edc1"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9c50e415-b99e-47b7-b50f-1658609006be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225429Z:44dc3cda-5561-45ee-ba0e-439b8693edc1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:29 GMT"
+ ],
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"df0cf574-152b-4bc5-9d11-5720b7a6245c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"true\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88c10831-cbdf-4602-9b32-9c03a034032b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"df0cf574-152b-4bc5-9d11-5720b7a6245c\""
+ ],
+ "x-ms-request-id": [
+ "0defb9b2-b96e-42e8-825d-08b8e00d9436"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d98cd2d-973a-4f62-9378-642083958fff"
+ ],
+ "x-ms-arm-service-request-id": [
+ "21e6fa35-d2d4-4a22-a763-899d905b9c41"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225429Z:6d98cd2d-973a-4f62-9378-642083958fff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:29 GMT"
+ ],
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"df0cf574-152b-4bc5-9d11-5720b7a6245c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"true\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"125a70cb-91a9-4709-86fc-6ff06a4d1f19\""
+ ],
+ "x-ms-request-id": [
+ "3c5e8d02-aa15-4e32-8667-c159fa8e10dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "e536aca3-b04d-469e-986f-342a67f85019"
+ ],
+ "x-ms-arm-service-request-id": [
+ "83adc0d1-ffc5-4701-b234-35db80c0424b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225443Z:e536aca3-b04d-469e-986f-342a67f85019"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:42 GMT"
+ ],
+ "Content-Length": [
+ "679"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"125a70cb-91a9-4709-86fc-6ff06a4d1f19\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"False\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3da683b7-247d-4819-ae6a-2a1ac6f5797a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"125a70cb-91a9-4709-86fc-6ff06a4d1f19\""
+ ],
+ "x-ms-request-id": [
+ "57c5166b-6500-4d8f-ade0-b86ec16903cc"
+ ],
+ "x-ms-correlation-request-id": [
+ "04dee15e-2575-4c3f-bf64-3c62165f8163"
+ ],
+ "x-ms-arm-service-request-id": [
+ "42b43e2d-da6d-4933-b114-dd2d7dc848fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225443Z:04dee15e-2575-4c3f-bf64-3c62165f8163"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:42 GMT"
+ ],
+ "Content-Length": [
+ "679"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"125a70cb-91a9-4709-86fc-6ff06a4d1f19\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"False\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ecaa08d-3264-4b89-8dac-f2e8edc819c8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"125a70cb-91a9-4709-86fc-6ff06a4d1f19\""
+ ],
+ "x-ms-request-id": [
+ "0e947d88-f4e1-4e7f-9ffe-6aa46790e026"
+ ],
+ "x-ms-correlation-request-id": [
+ "36e8fa5c-e255-430a-b4ff-514119500a49"
+ ],
+ "x-ms-arm-service-request-id": [
+ "29c7e67c-56ad-4294-a606-c0b1a81ec948"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225443Z:36e8fa5c-e255-430a-b4ff-514119500a49"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:42 GMT"
+ ],
+ "Content-Length": [
+ "679"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"125a70cb-91a9-4709-86fc-6ff06a4d1f19\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"False\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"true\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7b2fd65-b23a-4250-bbe2-d3395f74c9e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "394"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "354e2771-bdcd-4cf2-bffd-a565386c8ea5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/354e2771-bdcd-4cf2-bffd-a565386c8ea5?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d18c2a71-0372-4d75-b41c-10a101a33a40"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9e89346f-8675-43b5-a9d3-7ba8581e1704"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225418Z:d18c2a71-0372-4d75-b41c-10a101a33a40"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:18 GMT"
+ ],
+ "Content-Length": [
+ "677"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"a8e3fd72-7211-45a1-8854-8706b6034f9f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"true\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODU2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"False\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8609c936-0720-4c38-8880-236bd99a3fae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "531"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "510b1cf0-9901-404e-9bd9-84d62b3e7c08"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/510b1cf0-9901-404e-9bd9-84d62b3e7c08?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1a1227e-1ac5-4190-9034-3dfa7b6a46a3"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f7763c8e-5e14-4c4a-a0a5-7c4ff1987691"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225432Z:b1a1227e-1ac5-4190-9034-3dfa7b6a46a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:32 GMT"
+ ],
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6896\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8566/providers/Microsoft.Network/azureFirewalls/ps6896\",\r\n \"etag\": \"W/\\\"a59d4795-eb9b-455b-b1e5-e197b72e5e20\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {\r\n \"Network.FTP.AllowActiveFTP\": \"False\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/354e2771-bdcd-4cf2-bffd-a565386c8ea5?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzU0ZTI3NzEtYmRjZC00Y2YyLWJmZmQtYTU2NTM4NmM4ZWE1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9065959f-e2a2-49c9-8c23-521ebae87abb"
+ ],
+ "x-ms-correlation-request-id": [
+ "af3d9314-5550-4c33-b964-5e3f35dc4624"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1a420540-81f3-4cab-a543-2e3eb19a943f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225429Z:af3d9314-5550-4c33-b964-5e3f35dc4624"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:28 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus/operations/510b1cf0-9901-404e-9bd9-84d62b3e7c08?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTEwYjFjZjAtOTkwMS00MDRlLTliZDktODRkNjJiM2U3YzA4P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bcd26a35-0c7b-42b2-89c4-d686dbf01f6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "abe9b34c-a582-46b0-8860-c9b640edda4c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bc7f0d89-c72c-4138-9217-2de9dfc5bd34"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225442Z:abe9b34c-a582-46b0-8860-c9b640edda4c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:42 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps8566?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzODU2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8dd991c8-9d4d-463f-a507-835a60073723"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "97a42f99-1e52-4967-9b69-6c47907fa85f"
+ ],
+ "x-ms-correlation-request-id": [
+ "97a42f99-1e52-4967-9b69-6c47907fa85f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225445Z:97a42f99-1e52-4967-9b69-6c47907fa85f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "847b69fd-d15e-4cd8-9dce-061e286bc15a"
+ ],
+ "x-ms-correlation-request-id": [
+ "847b69fd-d15e-4cd8-9dce-061e286bc15a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225500Z:847b69fd-d15e-4cd8-9dce-061e286bc15a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:54:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "eef7fd33-328f-4e21-9fd2-3bfb404b2138"
+ ],
+ "x-ms-correlation-request-id": [
+ "eef7fd33-328f-4e21-9fd2-3bfb404b2138"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225515Z:eef7fd33-328f-4e21-9fd2-3bfb404b2138"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:55:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "fc2a38d2-9a2d-4486-b9f0-406f271a0cb7"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc2a38d2-9a2d-4486-b9f0-406f271a0cb7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225530Z:fc2a38d2-9a2d-4486-b9f0-406f271a0cb7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:55:30 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "4f36b2a3-c10e-44b7-9d64-e4a6b484986b"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f36b2a3-c10e-44b7-9d64-e4a6b484986b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225545Z:4f36b2a3-c10e-44b7-9d64-e4a6b484986b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:55:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "d6508e6c-3ec1-4d90-975b-d86258445643"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6508e6c-3ec1-4d90-975b-d86258445643"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225601Z:d6508e6c-3ec1-4d90-975b-d86258445643"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:56:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "fd4407f9-7f25-4745-8b38-b2e5a2e9ad45"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd4407f9-7f25-4745-8b38-b2e5a2e9ad45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225616Z:fd4407f9-7f25-4745-8b38-b2e5a2e9ad45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:56:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "8c898f92-f0c7-4626-8dda-a603b5f6d336"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c898f92-f0c7-4626-8dda-a603b5f6d336"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200717T225616Z:8c898f92-f0c7-4626-8dda-a603b5f6d336"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 17 Jul 2020 22:56:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-AzureFirewallCRUDAllowActiveFTP": [
+ "ps8566",
+ "ps6896",
+ "ps2139",
+ "ps1105"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "aeb5b02a-0f18-45a4-86d6-81808115cacf"
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestP2SCortexCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestP2SCortexCRUD.json
index 382a8d99c43b..75d5c01afb85 100644
--- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestP2SCortexCRUD.json
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestP2SCortexCRUD.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb58a2fa-a7ff-44af-af61-76814c6c0219"
+ "61fe9d6b-d93d-4313-8c18-ef1e45ad0d1a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -30,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "13759f62-099d-44e1-93eb-93876d41b776"
+ "6f6a9af8-8a76-4b9a-9336-4849f3328fe9"
],
"x-ms-correlation-request-id": [
- "13759f62-099d-44e1-93eb-93876d41b776"
+ "6f6a9af8-8a76-4b9a-9336-4849f3328fe9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022914Z:13759f62-099d-44e1-93eb-93876d41b776"
+ "WESTUS:20200826T105928Z:6f6a9af8-8a76-4b9a-9336-4849f3328fe9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:14 GMT"
+ "Wed, 26 Aug 2020 10:59:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,29 +54,29 @@
"-1"
],
"Content-Length": [
- "75016"
+ "83620"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customIpPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"masterCustomIpPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setLoadBalancerFrontendPublicIpAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\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\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualAppliances\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualApplianceSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints/customHttpsConfiguration\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps7860?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNzg2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps1913?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzMTkxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "238d54b6-b789-44fc-90fe-3fd28fffe582"
+ "31448d06-84a5-4ed4-be8d-2cbbf0195889"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "22d98ef3-5971-4be5-8f2b-deae84f1ee2c"
+ "62d48689-8b95-43c3-bba4-ffb4c78f80df"
],
"x-ms-correlation-request-id": [
- "22d98ef3-5971-4be5-8f2b-deae84f1ee2c"
+ "62d48689-8b95-43c3-bba4-ffb4c78f80df"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022916Z:22d98ef3-5971-4be5-8f2b-deae84f1ee2c"
+ "WESTUS:20200826T105930Z:62d48689-8b95-43c3-bba4-ffb4c78f80df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:15 GMT"
+ "Wed, 26 Aug 2020 10:59:29 GMT"
],
"Content-Length": [
"172"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860\",\r\n \"name\": \"ps7860\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913\",\r\n \"name\": \"ps1913\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "470b9b8e-a0ac-4a6b-b303-510816764aae"
+ "0e28e25c-5e48-4747-a888-4a7cde6f22db"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +156,13 @@
"gateway"
],
"x-ms-request-id": [
- "2b1eccd9-2da7-4023-8595-69f122b28367"
+ "132339a3-1a85-45d7-8a8b-37e5c6a4f0f0"
],
"x-ms-correlation-request-id": [
- "2b1eccd9-2da7-4023-8595-69f122b28367"
+ "132339a3-1a85-45d7-8a8b-37e5c6a4f0f0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022916Z:2b1eccd9-2da7-4023-8595-69f122b28367"
+ "WESTUS:20200826T105930Z:132339a3-1a85-45d7-8a8b-37e5c6a4f0f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +171,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:16 GMT"
+ "Wed, 26 Aug 2020 10:59:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -180,23 +180,23 @@
"-1"
],
"Content-Length": [
- "146"
+ "214"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps3994' under resource group 'ps7860' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps6953' under resource group 'ps1913' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -207,16 +207,16 @@
"no-cache"
],
"ETag": [
- "W/\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\""
+ "W/\"01bacd6c-2895-4acd-95cf-0516c0a491d5\""
],
"x-ms-request-id": [
- "d7a8993d-2fbd-47ca-a4b1-b5e7b353b86c"
+ "0d60c726-8e9e-4539-9c0d-0b5c36c152eb"
],
"x-ms-correlation-request-id": [
- "9f5a3798-b55a-44a7-a1d8-eccb524daf25"
+ "aeb6c4a4-cdcf-4952-9cd4-fea493d6600e"
],
"x-ms-arm-service-request-id": [
- "37d804cb-7fc7-494b-83a7-10cd290471e5"
+ "1d52dbaa-3baa-4da3-ac43-0e91f18b48d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -229,13 +229,13 @@
"11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022950Z:9f5a3798-b55a-44a7-a1d8-eccb524daf25"
+ "WESTUS:20200826T105944Z:aeb6c4a4-cdcf-4952-9cd4-fea493d6600e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:50 GMT"
+ "Wed, 26 Aug 2020 10:59:44 GMT"
],
"Content-Length": [
"503"
@@ -247,26 +247,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"01bacd6c-2895-4acd-95cf-0516c0a491d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54c00bdf-de18-4326-b903-33260c99b7aa"
+ "22021e75-0a9c-4487-b68f-8aa58f83f1ec"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -277,16 +277,16 @@
"no-cache"
],
"ETag": [
- "W/\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\""
+ "W/\"01bacd6c-2895-4acd-95cf-0516c0a491d5\""
],
"x-ms-request-id": [
- "e0133f64-b88b-45cf-a2ca-460d77c8a043"
+ "51fd03bf-5f5f-4119-97f3-9103e94105bf"
],
"x-ms-correlation-request-id": [
- "e38a0a87-1b2c-418e-8368-62715500de3b"
+ "06b1cde5-63a7-4b9a-8554-bf7a40562836"
],
"x-ms-arm-service-request-id": [
- "6ae58d82-5d29-4dcf-b106-487e5af47ac1"
+ "48a32bba-602b-422e-baae-282ea99b4a09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -299,13 +299,13 @@
"11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022951Z:e38a0a87-1b2c-418e-8368-62715500de3b"
+ "WESTUS:20200826T105944Z:06b1cde5-63a7-4b9a-8554-bf7a40562836"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:50 GMT"
+ "Wed, 26 Aug 2020 10:59:44 GMT"
],
"Content-Length": [
"503"
@@ -317,26 +317,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"01bacd6c-2895-4acd-95cf-0516c0a491d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a5b3f58-bf19-4c03-bff6-f8e4567e4e99"
+ "b2c230d0-82c7-44f7-b0ba-84a783276157"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -347,16 +347,16 @@
"no-cache"
],
"ETag": [
- "W/\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\""
+ "W/\"01bacd6c-2895-4acd-95cf-0516c0a491d5\""
],
"x-ms-request-id": [
- "ad96526f-162f-41a1-97f3-e2ccdb6077d4"
+ "76faa669-5a64-42ab-92b9-53205f80c5b5"
],
"x-ms-correlation-request-id": [
- "c3fb2c43-d6dd-4688-882a-20fe572d7590"
+ "cff1689c-a6d4-410c-81ca-b3018612960b"
],
"x-ms-arm-service-request-id": [
- "886102aa-b066-4f6c-9c71-562952c6acf2"
+ "009f3a61-68b0-4ad6-865f-90bcbb7f08ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,16 +366,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022951Z:c3fb2c43-d6dd-4688-882a-20fe572d7590"
+ "WESTUS:20200826T105944Z:cff1689c-a6d4-410c-81ca-b3018612960b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:50 GMT"
+ "Wed, 26 Aug 2020 10:59:44 GMT"
],
"Content-Length": [
"503"
@@ -387,26 +387,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"01bacd6c-2895-4acd-95cf-0516c0a491d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0b7643e-16cf-42b6-8950-7184237dc9a4"
+ "29450453-278d-4371-8f0f-008d9df3c0d2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -417,16 +417,16 @@
"no-cache"
],
"ETag": [
- "W/\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\""
+ "W/\"01bacd6c-2895-4acd-95cf-0516c0a491d5\""
],
"x-ms-request-id": [
- "fcca013c-1e9b-4c09-88b0-f5b72dfdc537"
+ "d29993b5-b9ca-400c-b663-73c56fc172f5"
],
"x-ms-correlation-request-id": [
- "62d61391-a72e-433a-9606-1dc035b69ce9"
+ "50240282-2357-46e6-83ed-b58ffee4a94e"
],
"x-ms-arm-service-request-id": [
- "d00d6be5-eadd-4193-98df-8a2046258e81"
+ "e681769f-68a5-4da5-a014-ee6bf5ddbe54"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -439,13 +439,13 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022951Z:62d61391-a72e-433a-9606-1dc035b69ce9"
+ "WESTUS:20200826T105945Z:50240282-2357-46e6-83ed-b58ffee4a94e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:51 GMT"
+ "Wed, 26 Aug 2020 10:59:45 GMT"
],
"Content-Length": [
"503"
@@ -457,26 +457,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"bdc33a80-ad4e-4e23-86a4-5ac853edd14a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"01bacd6c-2895-4acd-95cf-0516c0a491d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8971115d-f24c-49b8-9566-4f5f5aaee94b"
+ "b8a44030-1fb8-4537-8ea3-f46bfc9bf093"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -487,16 +487,16 @@
"no-cache"
],
"ETag": [
- "W/\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\""
+ "W/\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\""
],
"x-ms-request-id": [
- "3c9c4a5a-26cc-4e85-ac5e-f4f70ef40701"
+ "2b58e94c-9408-4a49-9189-7f93fe2a152b"
],
"x-ms-correlation-request-id": [
- "d676385b-3eba-4439-b6bb-606d3590bd3b"
+ "0e6562fe-b916-4e4e-b0f1-d071d9a78714"
],
"x-ms-arm-service-request-id": [
- "121593b9-41b0-4b3a-9978-e4ab237cc00b"
+ "5e7fcbf2-0b18-437d-a51b-eb2ca196ed98"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -509,13 +509,13 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030205Z:d676385b-3eba-4439-b6bb-606d3590bd3b"
+ "WESTUS:20200826T114611Z:0e6562fe-b916-4e4e-b0f1-d071d9a78714"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
+ "Wed, 26 Aug 2020 11:46:10 GMT"
],
"Content-Length": [
"689"
@@ -527,26 +527,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8bdf059-a962-4366-b6f7-ec14236c517f"
+ "e9d5afc5-79ee-4d0f-bb08-522c692fcaed"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -557,16 +557,16 @@
"no-cache"
],
"ETag": [
- "W/\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\""
+ "W/\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\""
],
"x-ms-request-id": [
- "2b797841-e88b-485b-9cc0-7a00b7e4eb90"
+ "26fd337c-9918-44ba-8373-85fc5a076c8c"
],
"x-ms-correlation-request-id": [
- "fdce1b12-7584-4433-b25c-de175030bccc"
+ "e6beb2ec-4236-4b94-85c0-3f358c5dcb79"
],
"x-ms-arm-service-request-id": [
- "e688b732-9c5f-4969-927b-fab821115a56"
+ "987143ab-4909-40de-8b3f-5f3d64a24a1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -579,13 +579,13 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:fdce1b12-7584-4433-b25c-de175030bccc"
+ "WESTUS:20200826T114622Z:e6beb2ec-4236-4b94-85c0-3f358c5dcb79"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:16 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
"689"
@@ -597,26 +597,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b280e2c5-783d-4aef-8244-7008da21e56a"
+ "5e520e68-a3d4-4c43-8255-263188bbe394"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -627,16 +627,16 @@
"no-cache"
],
"ETag": [
- "W/\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\""
+ "W/\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\""
],
"x-ms-request-id": [
- "d63edb04-e688-4006-a6e5-49bbfe1896f4"
+ "f8e74927-5841-43df-a4cb-e19a70c50539"
],
"x-ms-correlation-request-id": [
- "c606ac89-68b8-4494-8296-829a903e3430"
+ "4e336499-de61-40a1-9148-4655492332e9"
],
"x-ms-arm-service-request-id": [
- "eb806e8b-7515-4ec7-95c8-7333e49a530d"
+ "2d11bdfd-644e-486f-9b7b-ff12ed1456a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -646,16 +646,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031618Z:c606ac89-68b8-4494-8296-829a903e3430"
+ "WESTUS:20200826T120401Z:4e336499-de61-40a1-9148-4655492332e9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:17 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
"689"
@@ -667,26 +667,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4506905-4cd1-4b5b-bb1c-a480270c7ac2"
+ "3db90d35-a5b1-40e8-9030-0b56389056da"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -697,16 +697,16 @@
"no-cache"
],
"ETag": [
- "W/\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\""
+ "W/\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\""
],
"x-ms-request-id": [
- "53ff43af-ee6b-4ee3-bc5b-a4df68488a97"
+ "d3fe2919-c273-4925-bf85-fa847583682c"
],
"x-ms-correlation-request-id": [
- "710d49a7-82bc-4b86-9271-479e34f24793"
+ "9940f72e-c841-4eac-9c2d-9acad1f1b58b"
],
"x-ms-arm-service-request-id": [
- "04a77f77-d21d-4f62-88eb-3703a5c51c92"
+ "c9b96563-16c3-4ef2-8a3b-cbb7dabe5d9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -719,13 +719,13 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032923Z:710d49a7-82bc-4b86-9271-479e34f24793"
+ "WESTUS:20200826T121843Z:9940f72e-c841-4eac-9c2d-9acad1f1b58b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:23 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
"689"
@@ -737,26 +737,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"d28e4ab2-67e9-4703-8fef-7de2d4c0310e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"bfcbe417-5bec-43a1-beb4-662a2a8153fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": false,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21e71dfe-c5ca-4b41-b193-f0187f9ed728"
+ "71174f5c-91ee-4201-98e1-894167de7671"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -776,19 +776,19 @@
"10"
],
"x-ms-request-id": [
- "2c0a0120-83ff-499d-9e8d-216be7438a6b"
+ "e16921a1-dc3d-44a7-aef4-848accf8fae2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/2c0a0120-83ff-499d-9e8d-216be7438a6b?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e16921a1-dc3d-44a7-aef4-848accf8fae2?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "4e16c647-4d37-4cc4-aae8-93da28fa5698"
+ "6690e308-a0fc-49f6-8618-70802c46ee24"
],
"Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "841c0a41-934e-4971-a40d-34f9a700fb46"
+ "a947ed99-7d6c-4b88-92de-57c0812ad5c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -801,13 +801,13 @@
"1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022920Z:4e16c647-4d37-4cc4-aae8-93da28fa5698"
+ "WESTUS:20200826T105933Z:6690e308-a0fc-49f6-8618-70802c46ee24"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:19 GMT"
+ "Wed, 26 Aug 2020 10:59:33 GMT"
],
"Content-Length": [
"502"
@@ -819,20 +819,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps3994\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\",\r\n \"etag\": \"W/\\\"a813b16c-dd99-47d9-a4a9-54a3745797b8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6953\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\",\r\n \"etag\": \"W/\\\"332f7397-5765-4759-be28-a2dd480d0b70\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/2c0a0120-83ff-499d-9e8d-216be7438a6b?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJjMGEwMTIwLTgzZmYtNDk5ZC05ZThkLTIxNmJlNzQzOGE2Yj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e16921a1-dc3d-44a7-aef4-848accf8fae2?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2UxNjkyMWExLWRjM2QtNDRhNy1hZWY0LTg0OGFjY2Y4ZmFlMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -842,17 +842,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "eab6815d-fb55-43bf-996f-5afeb9be5bbd"
+ "e3103bcc-b310-4210-9446-b4b11f48afe3"
],
"x-ms-correlation-request-id": [
- "712ce68d-ed32-43c3-aa64-6897a57444ea"
+ "91f70213-01b9-436e-8964-94bee0d92d91"
],
"x-ms-arm-service-request-id": [
- "aa4def44-8564-46bb-a3fc-79862b5cdc87"
+ "d99673a4-d222-4d48-bbd2-b33bf5784ed5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -862,19 +859,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022930Z:712ce68d-ed32-43c3-aa64-6897a57444ea"
+ "WESTUS:20200826T105944Z:91f70213-01b9-436e-8964-94bee0d92d91"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:30 GMT"
+ "Wed, 26 Aug 2020 10:59:44 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -883,20 +880,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/2c0a0120-83ff-499d-9e8d-216be7438a6b?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJjMGEwMTIwLTgzZmYtNDk5ZC05ZThkLTIxNmJlNzQzOGE2Yj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "845de78e-797a-4863-9039-56b4a505e9ab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -906,17 +909,68 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "5e5b25a2-55b1-414f-b551-8ba469630ae0"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e5b25a2-55b1-414f-b551-8ba469630ae0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T105945Z:5e5b25a2-55b1-414f-b551-8ba469630ae0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 10:59:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "214"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps4818' under resource group 'ps1913' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "bc8ed3dc-c7ec-4798-93a3-d908696a274f"
+ "a8c24588-2c60-4956-91a1-d5d806d6c2f9"
],
"x-ms-correlation-request-id": [
- "668c0979-0e0b-482e-a957-5480be45eb96"
+ "ffbfa000-dcc6-4440-be61-917b7028fbb9"
],
"x-ms-arm-service-request-id": [
- "87e393d8-3750-4dc6-8c88-7ca6c30f1e48"
+ "8565be53-e3da-4546-ae1f-76e5329c9c67"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -926,19 +980,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022940Z:668c0979-0e0b-482e-a957-5480be45eb96"
+ "WESTUS:20200826T110348Z:ffbfa000-dcc6-4440-be61-917b7028fbb9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:40 GMT"
+ "Wed, 26 Aug 2020 11:03:47 GMT"
],
"Content-Length": [
- "30"
+ "761"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -947,20 +1001,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps4818\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\",\r\n \"etag\": \"W/\\\"16cb214a-0908-49a6-91a9-c29b77760879\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/2c0a0120-83ff-499d-9e8d-216be7438a6b?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJjMGEwMTIwLTgzZmYtNDk5ZC05ZThkLTIxNmJlNzQzOGE2Yj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c2f8fc8-e7de-4ce4-8256-f36544aec27c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -971,13 +1031,13 @@
"no-cache"
],
"x-ms-request-id": [
- "f530575f-0c4d-4587-85b4-3becbf851b1a"
+ "28f686b1-7947-4c20-8380-ef695e5781e5"
],
"x-ms-correlation-request-id": [
- "f704d882-5062-4ec1-b39c-9a760dc92ef9"
+ "cadd357d-8d18-4664-b50a-581a594036f1"
],
"x-ms-arm-service-request-id": [
- "a940103f-75c5-42dd-9dab-cb14342ec5fd"
+ "6a99adb0-dc3b-454b-922b-c4c6cdd4757a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -987,19 +1047,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022950Z:f704d882-5062-4ec1-b39c-9a760dc92ef9"
+ "WESTUS:20200826T110348Z:cadd357d-8d18-4664-b50a-581a594036f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:50 GMT"
+ "Wed, 26 Aug 2020 11:03:48 GMT"
],
"Content-Length": [
- "29"
+ "761"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1008,26 +1068,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps4818\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\",\r\n \"etag\": \"W/\\\"16cb214a-0908-49a6-91a9-c29b77760879\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM4ODc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7305369d-15c6-4baf-9123-011bb0377232"
+ "e8dabccf-6166-4ebb-98c9-d94dec21c878"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1037,51 +1097,140 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "d206ecfb-cb7c-4b79-95fd-3c1daefa30d2"
+ "a72ce245-908c-4ad0-b3b0-ad8aeda664a0"
],
"x-ms-correlation-request-id": [
- "d206ecfb-cb7c-4b79-95fd-3c1daefa30d2"
+ "0ec9d6ac-c738-4d99-9745-c00391d023f6"
],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T022951Z:d206ecfb-cb7c-4b79-95fd-3c1daefa30d2"
+ "x-ms-arm-service-request-id": [
+ "201b817c-5d58-4826-9a44-ef5300de483e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T110402Z:0ec9d6ac-c738-4d99-9745-c00391d023f6"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:50 GMT"
+ "Wed, 26 Aug 2020 11:04:01 GMT"
+ ],
+ "Content-Length": [
+ "761"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4818\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\",\r\n \"etag\": \"W/\\\"16cb214a-0908-49a6-91a9-c29b77760879\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\"\r\n },\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8cc9fff9-187b-4b0f-8e0d-96a20699fd40"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Content-Length": [
- "146"
+ "383"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps8877' under resource group 'ps7860' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c4e76c2e-57ee-4b21-94b7-a0db11ce73b5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "95d30e70-3476-43f4-bd7d-fa67f8eac6b8"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5877459a-f841-4259-8361-01b2090ecc8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T105947Z:95d30e70-3476-43f4-bd7d-fa67f8eac6b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 10:59:47 GMT"
+ ],
+ "Content-Length": [
+ "752"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4818\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\",\r\n \"etag\": \"W/\\\"5b5b8da1-7609-4dd9-b013-bbc3bc33bc99\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM4ODc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1091,14 +1240,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "9309a677-a6c4-4662-9a90-a16c282e51c8"
+ "8fc82b57-639b-4a9a-bf81-0b0413dbdbdf"
],
"x-ms-correlation-request-id": [
- "b1e340ec-90d7-4fcb-9333-0448d4648186"
+ "66c20119-583a-4ded-b560-cc8e25a04d52"
],
"x-ms-arm-service-request-id": [
- "06615332-9174-41aa-8013-6e3093b445bd"
+ "3e13c99f-fd2f-411f-8bd1-4d4792daeb81"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1108,19 +1260,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023315Z:b1e340ec-90d7-4fcb-9333-0448d4648186"
+ "WESTUS:20200826T105957Z:66c20119-583a-4ded-b560-cc8e25a04d52"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:15 GMT"
+ "Wed, 26 Aug 2020 10:59:57 GMT"
],
"Content-Length": [
- "799"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1129,26 +1281,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps8877\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\",\r\n \"etag\": \"W/\\\"4f125641-15c4-4a73-ad13-27b91dbc3f6d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": [],\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM4ODc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "3f034d29-f930-41e0-9d28-36e211381c68"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1158,14 +1304,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "20"
+ ],
"x-ms-request-id": [
- "a65744da-0599-4c2a-bdba-7f5ff41c3bc6"
+ "0814d46e-a2ef-463d-b1c4-c2ac49298794"
],
"x-ms-correlation-request-id": [
- "e301189e-5ea7-43f3-afa7-9c2cfdf1ec55"
+ "6db2d6f1-f920-4594-bb51-601eb8dc9e3b"
],
"x-ms-arm-service-request-id": [
- "bff069e6-1b3f-4fc2-b2d2-9e22df047a9d"
+ "f9b66c95-1553-4544-ad11-5c2b2ca765ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1175,19 +1324,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023315Z:e301189e-5ea7-43f3-afa7-9c2cfdf1ec55"
+ "WESTUS:20200826T110007Z:6db2d6f1-f920-4594-bb51-601eb8dc9e3b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:15 GMT"
+ "Wed, 26 Aug 2020 11:00:07 GMT"
],
"Content-Length": [
- "799"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1196,26 +1345,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps8877\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\",\r\n \"etag\": \"W/\\\"4f125641-15c4-4a73-ad13-27b91dbc3f6d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": [],\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM4ODc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "2edcf420-2b19-44bc-9383-3fb725ebe07d"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1225,14 +1368,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "20"
+ ],
"x-ms-request-id": [
- "7b131bb3-d33d-410e-80b6-e39523e30afa"
+ "4594ba82-bf8e-4c85-aa0e-05183d81fffd"
],
"x-ms-correlation-request-id": [
- "30ce0af9-9202-4c15-87a0-e6e39963f2c8"
+ "6bac071f-571c-483c-afe6-8e936bbb50f3"
],
"x-ms-arm-service-request-id": [
- "556d2b3c-36bc-4353-9da8-dd06a9c9f0fd"
+ "34f756cf-88ae-4ed1-b482-6982cf27c41e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1245,16 +1391,16 @@
"11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023329Z:30ce0af9-9202-4c15-87a0-e6e39963f2c8"
+ "WESTUS:20200826T110027Z:6bac071f-571c-483c-afe6-8e936bbb50f3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:29 GMT"
+ "Wed, 26 Aug 2020 11:00:27 GMT"
],
"Content-Length": [
- "799"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1263,32 +1409,84 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps8877\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\",\r\n \"etag\": \"W/\\\"4f125641-15c4-4a73-ad13-27b91dbc3f6d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": [],\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM4ODc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\"\r\n },\r\n \"virtualNetworkConnections\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\"\r\n },\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "f001b44e-329a-49cc-b12d-c69712b09100"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "042e49e5-1450-46d8-8761-b420640a3967"
+ ],
+ "x-ms-correlation-request-id": [
+ "742705ed-5554-4580-91a6-600228b168fd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3ce94479-d838-43cb-bd49-480f083c1cb7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T110047Z:742705ed-5554-4580-91a6-600228b168fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 11:00:47 GMT"
+ ],
+ "Content-Length": [
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Content-Length": [
- "364"
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1299,22 +1497,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "0eb83ed1-4507-41e3-8181-1bfba42697dd"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01"
+ "c4c55d2a-4840-42d5-ad38-a7a7c445ff6e"
],
"x-ms-correlation-request-id": [
- "bbc17c37-5375-46a5-9f38-681c8cdb872f"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "92fceab4-5313-4f1c-baf9-e4f08403b1ff"
],
"x-ms-arm-service-request-id": [
- "7e2816ae-2320-4538-a141-1bfc54ec2cce"
+ "6e7b29a9-8a6f-47b1-9a98-e8040355403e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1323,20 +1515,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T022953Z:bbc17c37-5375-46a5-9f38-681c8cdb872f"
+ "WESTUS:20200826T110128Z:92fceab4-5313-4f1c-baf9-e4f08403b1ff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:29:53 GMT"
+ "Wed, 26 Aug 2020 11:01:27 GMT"
],
"Content-Length": [
- "790"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1345,20 +1537,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps8877\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\",\r\n \"etag\": \"W/\\\"8c653094-ba1a-41b5-a1df-eadb62efdb34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualNetworkConnections\": [],\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1369,16 +1561,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "580eef99-6db6-4701-a445-fb624ba0ec46"
+ "da24a038-f38d-4b27-9d6e-7548d3b83ae7"
],
"x-ms-correlation-request-id": [
- "32b036c2-d0d5-4140-9bd8-5b2d2f6ff9bd"
+ "eab7fbdf-10cc-4308-9927-0c666c7244a2"
],
"x-ms-arm-service-request-id": [
- "7835abb8-be3b-4aac-bd75-af61a6d3f041"
+ "eaddab0e-30c3-4a56-b60b-d567e57dc26c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1388,16 +1580,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023004Z:32b036c2-d0d5-4140-9bd8-5b2d2f6ff9bd"
+ "WESTUS:20200826T110208Z:eab7fbdf-10cc-4308-9927-0c666c7244a2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:30:03 GMT"
+ "Wed, 26 Aug 2020 11:02:07 GMT"
],
"Content-Length": [
"30"
@@ -1413,16 +1605,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c4e76c2e-57ee-4b21-94b7-a0db11ce73b5?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M0ZTc2YzJlLTU3ZWUtNGIyMS05NGI3LWEwZGIxMWNlNzNiNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1432,17 +1624,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "9561279b-c477-411b-83a2-31d69da0e5ba"
+ "a83bf255-b9c6-49db-a16f-ef6ab21e2cd5"
],
"x-ms-correlation-request-id": [
- "155dba9a-7bda-47fc-a656-439f223b3d2c"
+ "fc142cfa-fa2b-4dbc-b94e-22de322489f2"
],
"x-ms-arm-service-request-id": [
- "f50a1729-68bd-45a9-ab06-f2bb888871fd"
+ "08b28c4e-4a0b-4309-acc8-56414f623693"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,19 +1641,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023014Z:155dba9a-7bda-47fc-a656-439f223b3d2c"
+ "WESTUS:20200826T110348Z:fc142cfa-fa2b-4dbc-b94e-22de322489f2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:30:13 GMT"
+ "Wed, 26 Aug 2020 11:03:47 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1473,20 +1662,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubVirtualNetworkConnections?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4L2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "697ea6ef-1072-4c64-b69b-455ef077d819"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1496,17 +1691,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "b0ea8d21-40ec-47aa-b99d-0316141987ef"
+ "ea1bfb58-8c40-4968-b90a-d3ca16941d74"
],
"x-ms-correlation-request-id": [
- "563c256d-a64f-4a77-bc34-655eed2c3c37"
+ "81a18c8b-ffe2-436f-aa59-036ee5465f9e"
],
"x-ms-arm-service-request-id": [
- "6f1a01ff-a945-4233-96fc-0ba834f9ea2d"
+ "d30e4d37-8a03-4bc2-a82d-32865ca99b5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1516,19 +1708,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023024Z:563c256d-a64f-4a77-bc34-655eed2c3c37"
+ "WESTUS:20200826T110349Z:81a18c8b-ffe2-436f-aa59-036ee5465f9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:30:23 GMT"
+ "Wed, 26 Aug 2020 11:03:49 GMT"
],
"Content-Length": [
- "30"
+ "19"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1537,20 +1729,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubVirtualNetworkConnections?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4L2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "47d0dfba-d4f4-4c7b-a182-3cd9edbe0947"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1560,17 +1758,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "88aac977-b519-46d3-8285-0ce13d98a0a9"
+ "d01d7a28-fe4d-47cd-8eb2-54caa95a20a7"
],
"x-ms-correlation-request-id": [
- "541d2c15-5058-4c86-bad0-3b0e2e8d7da7"
+ "d48779e4-22f2-48bd-8d2a-a8b36b0193d6"
],
"x-ms-arm-service-request-id": [
- "a0e253e4-55f5-445f-aa20-bd4b91029d73"
+ "2176ee3e-09ac-43fb-b14f-ccd72518eaa6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1580,19 +1775,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023034Z:541d2c15-5058-4c86-bad0-3b0e2e8d7da7"
+ "WESTUS:20200826T110402Z:d48779e4-22f2-48bd-8d2a-a8b36b0193d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:30:34 GMT"
+ "Wed, 26 Aug 2020 11:04:01 GMT"
],
"Content-Length": [
- "30"
+ "19"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1601,20 +1796,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHMxNjA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67873755-94ba-47fb-b0d3-e23ce2ecef38"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1624,61 +1825,51 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "7fc9e338-ef1c-44fb-aa6a-44d112406f9b"
+ "26bec7ed-a2d1-4f36-b135-79de6052e2fc"
],
"x-ms-correlation-request-id": [
- "592b8b2d-537e-4e21-a025-25c8c29b5e56"
+ "26bec7ed-a2d1-4f36-b135-79de6052e2fc"
],
- "x-ms-arm-service-request-id": [
- "b3e01963-e50a-4818-a581-7f7740900a79"
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T110349Z:26bec7ed-a2d1-4f36-b135-79de6052e2fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023044Z:592b8b2d-537e-4e21-a025-25c8c29b5e56"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:30:44 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 26 Aug 2020 11:03:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "226"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnServerConfigurations/ps1604' under resource group 'ps1913' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHMxNjA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1688,17 +1879,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"5b558d36-4afb-40a3-896a-f3b41303a279\""
],
"x-ms-request-id": [
- "e716d122-6ebb-40c1-a5e1-0cd8d2071d68"
+ "db48bbc5-76f2-47d1-87a4-f0ac7cfda0c7"
],
"x-ms-correlation-request-id": [
- "d01cba3b-a173-40c7-b480-3e5fe9a25785"
+ "446e1cc6-11aa-4d63-bf8e-5313248be511"
],
"x-ms-arm-service-request-id": [
- "e442edac-1d1d-40bd-a284-1ae5f12684c4"
+ "22056609-4be6-4046-8135-1e8debae6d95"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1708,19 +1899,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023054Z:d01cba3b-a173-40c7-b480-3e5fe9a25785"
+ "WESTUS:20200826T110401Z:446e1cc6-11aa-4d63-bf8e-5313248be511"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:30:54 GMT"
+ "Wed, 26 Aug 2020 11:04:00 GMT"
],
"Content-Length": [
- "30"
+ "2390"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1729,20 +1920,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"5b558d36-4afb-40a3-896a-f3b41303a279\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHMxNjA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc53597b-54db-440a-904d-3494e24db5ef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1752,17 +1949,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"5b558d36-4afb-40a3-896a-f3b41303a279\""
],
"x-ms-request-id": [
- "d27e74d8-54c0-4b3c-adac-276385c739d1"
+ "c2908d93-c697-4ae8-99bf-023d38e30f61"
],
"x-ms-correlation-request-id": [
- "639cab0e-83c2-49c1-a94a-f2cd368e9eb5"
+ "cff69a80-fad2-4cac-a28e-ed0021cc52a7"
],
"x-ms-arm-service-request-id": [
- "df0e928e-6ab9-4607-ae54-a12964a62dab"
+ "43f6e5e1-108e-4628-819d-38c89492a737"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1772,19 +1969,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023104Z:639cab0e-83c2-49c1-a94a-f2cd368e9eb5"
+ "WESTUS:20200826T110401Z:cff69a80-fad2-4cac-a28e-ed0021cc52a7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:31:04 GMT"
+ "Wed, 26 Aug 2020 11:04:01 GMT"
],
"Content-Length": [
- "30"
+ "2390"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1793,20 +1990,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"5b558d36-4afb-40a3-896a-f3b41303a279\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHMxNjA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e80ef09-3ba1-4b00-a1d8-f727a5261148"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1816,17 +2019,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"ffb88bbd-5be6-4479-b8e4-d73994aef4f9\""
],
"x-ms-request-id": [
- "d78085ad-4a3d-447b-ad7b-27a13e813367"
+ "07083ec8-5347-43bb-9417-56d28d7d4fee"
],
"x-ms-correlation-request-id": [
- "4a70c196-051e-4d5e-bbc1-f559a5d2582b"
+ "9955b643-8db6-4239-895f-61385d93f4d8"
],
"x-ms-arm-service-request-id": [
- "02222b2d-1d2d-411e-a5f3-6560feea1b84"
+ "d7741c39-0235-4a93-aebb-dca42e636ca3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1836,19 +2039,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023114Z:4a70c196-051e-4d5e-bbc1-f559a5d2582b"
+ "WESTUS:20200826T114614Z:9955b643-8db6-4239-895f-61385d93f4d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:31:14 GMT"
+ "Wed, 26 Aug 2020 11:46:13 GMT"
],
"Content-Length": [
- "30"
+ "2582"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1857,20 +2060,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"ffb88bbd-5be6-4479-b8e4-d73994aef4f9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHMxNjA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"radiusServers\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0144ee3-712a-48a4-bdff-43db48f782c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2074"
]
},
"ResponseHeaders": {
@@ -1884,13 +2099,19 @@
"10"
],
"x-ms-request-id": [
- "cc227613-c8a7-4f81-806a-6b034ae87194"
+ "e4acbd3b-54b8-480c-b838-5d0d71ac573d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e4acbd3b-54b8-480c-b838-5d0d71ac573d?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "499711a3-e626-4c79-8080-d24652542732"
+ "cd45b24b-93a3-4a67-92c0-c18c292b6210"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "4c8d469c-8476-4758-8938-c72b64d34944"
+ "9cd9b704-ea1c-4f3b-97db-209fe35f172c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1899,20 +2120,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023124Z:499711a3-e626-4c79-8080-d24652542732"
+ "WESTUS:20200826T110351Z:cd45b24b-93a3-4a67-92c0-c18c292b6210"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:31:24 GMT"
+ "Wed, 26 Aug 2020 11:03:50 GMT"
],
"Content-Length": [
- "30"
+ "2389"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1921,20 +2142,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"3b96c3cc-9041-466d-9dc9-f4e8034368f2\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e4acbd3b-54b8-480c-b838-5d0d71ac573d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0YWNiZDNiLTU0YjgtNDgwYy1iODM4LTVkMGQ3MWFjNTczZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -1944,17 +2165,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "f6f79a2d-c75d-4b49-8595-2cdb3c0e407b"
+ "ee1b24c7-8c9e-4374-99ad-4ca4e261bfba"
],
"x-ms-correlation-request-id": [
- "5e514bfb-4aab-4bc5-a8ae-8bb86d7510c6"
+ "34915438-90c2-402f-8fc5-4a493e20d4e4"
],
"x-ms-arm-service-request-id": [
- "777af471-e03c-47b1-88be-3d47d6df8d01"
+ "7f196f57-fa8d-4a76-ad9d-4a2fb76cdff6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1964,19 +2182,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023134Z:5e514bfb-4aab-4bc5-a8ae-8bb86d7510c6"
+ "WESTUS:20200826T110401Z:34915438-90c2-402f-8fc5-4a493e20d4e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:31:34 GMT"
+ "Wed, 26 Aug 2020 11:04:00 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1985,20 +2203,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48aa0705-20b3-4a4a-891f-dcc69dc80651"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2008,61 +2232,51 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "524957a2-b1b5-4821-9dfd-42904b9d461c"
+ "0f4a8115-2988-469e-bd3e-9d6fb1f9f0ef"
],
"x-ms-correlation-request-id": [
- "998f7296-b43c-4bf2-a6b5-e58ddae2fc64"
+ "0f4a8115-2988-469e-bd3e-9d6fb1f9f0ef"
],
- "x-ms-arm-service-request-id": [
- "2526ed73-8e15-48ae-b262-a4f4dcf2f857"
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T110401Z:0f4a8115-2988-469e-bd3e-9d6fb1f9f0ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023144Z:998f7296-b43c-4bf2-a6b5-e58ddae2fc64"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:31:44 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 26 Aug 2020 11:04:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "217"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/p2sVpnGateways/ps3649' under resource group 'ps1913' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2072,17 +2286,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"91e5cd97-44f8-456c-aa69-74a49dd6a69e\""
],
"x-ms-request-id": [
- "de4e51ed-a49f-4a1f-b675-bce5f4b1b919"
+ "9986ae71-02aa-4c95-9cee-f50db849f067"
],
"x-ms-correlation-request-id": [
- "7fb12847-e6ba-4a14-8e68-0a0ee69d1b5a"
+ "fc653066-a50e-4018-b01d-3c481c059ba9"
],
"x-ms-arm-service-request-id": [
- "9db98ae3-b40b-4f4b-9232-0312e0bb0fbc"
+ "c4733020-c595-48b1-83ff-fd13e35e75b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2092,19 +2306,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023155Z:7fb12847-e6ba-4a14-8e68-0a0ee69d1b5a"
+ "WESTUS:20200826T113127Z:fc653066-a50e-4018-b01d-3c481c059ba9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:31:54 GMT"
+ "Wed, 26 Aug 2020 11:31:26 GMT"
],
"Content-Length": [
- "30"
+ "2341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2113,20 +2327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"91e5cd97-44f8-456c-aa69-74a49dd6a69e\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"91e5cd97-44f8-456c-aa69-74a49dd6a69e\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5abe6fb3-1ee3-49f5-aa1e-eca1c3ba8a96"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2136,17 +2356,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"91e5cd97-44f8-456c-aa69-74a49dd6a69e\""
],
"x-ms-request-id": [
- "0062a5bb-3936-4122-b73d-710e78405e13"
+ "1e44ac5a-2f29-4594-bece-f905b04ed731"
],
"x-ms-correlation-request-id": [
- "2ad15fb3-5c79-4a7b-a875-764728af89eb"
+ "7383b35c-f51c-44df-813f-594a38e6aa7b"
],
"x-ms-arm-service-request-id": [
- "1934d956-19ea-4360-b4f8-472c659e4846"
+ "3b16171e-04f3-469e-bcf7-9a47a8ffee92"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2156,19 +2376,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023205Z:2ad15fb3-5c79-4a7b-a875-764728af89eb"
+ "WESTUS:20200826T113127Z:7383b35c-f51c-44df-813f-594a38e6aa7b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:32:04 GMT"
+ "Wed, 26 Aug 2020 11:31:27 GMT"
],
"Content-Length": [
- "30"
+ "2341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2177,20 +2397,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"91e5cd97-44f8-456c-aa69-74a49dd6a69e\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"91e5cd97-44f8-456c-aa69-74a49dd6a69e\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "66916201-19b6-4da4-a06d-7dcb32cba345"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2200,17 +2426,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\""
],
"x-ms-request-id": [
- "483953b7-f266-44ff-9039-7bde931c207b"
+ "d6cf8572-46a7-40b9-ac3a-18a6b2873179"
],
"x-ms-correlation-request-id": [
- "41399a4c-816c-4f37-99d5-e0003a0bdd2d"
+ "fd2becfe-e95d-4980-b13d-9e04d0dfc58c"
],
"x-ms-arm-service-request-id": [
- "b3b41660-7c82-4518-9481-fd65e0999873"
+ "67396150-465d-43a6-bc8e-df5d1a733bf1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2220,19 +2446,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023215Z:41399a4c-816c-4f37-99d5-e0003a0bdd2d"
+ "WESTUS:20200826T114610Z:fd2becfe-e95d-4980-b13d-9e04d0dfc58c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:32:14 GMT"
+ "Wed, 26 Aug 2020 11:46:10 GMT"
],
"Content-Length": [
- "30"
+ "2341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2241,20 +2467,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4eb2eb1d-6c62-4a64-8050-974706f4db34"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2264,17 +2496,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\""
],
"x-ms-request-id": [
- "61808aeb-a27a-43fd-9b13-eb40ea84684e"
+ "b3b39c9c-b5a7-4f44-b8e6-52dd255490ab"
],
"x-ms-correlation-request-id": [
- "c2300459-dd27-4cac-b756-2a5f382e2509"
+ "a39c2c3c-b431-49d7-bd55-ca6312b65b59"
],
"x-ms-arm-service-request-id": [
- "bdd9a5da-da67-4c92-943f-b173d9e4586f"
+ "0c7c089a-29d3-49a2-aea7-634c3ea263d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2284,19 +2516,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023225Z:c2300459-dd27-4cac-b756-2a5f382e2509"
+ "WESTUS:20200826T114611Z:a39c2c3c-b431-49d7-bd55-ca6312b65b59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:32:25 GMT"
+ "Wed, 26 Aug 2020 11:46:10 GMT"
],
"Content-Length": [
- "30"
+ "2341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2305,20 +2537,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c418483-ed0b-4e91-8d8c-9a9a485433a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2328,17 +2566,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\""
],
"x-ms-request-id": [
- "a8308328-d130-4af9-8adb-572abd443648"
+ "43b8a5cf-c643-4220-82e0-9a8b7992ca7e"
],
"x-ms-correlation-request-id": [
- "212a9552-2e61-4073-962f-e929d8cd28b1"
+ "85e28991-0c88-46cf-b958-b7575b6037b1"
],
"x-ms-arm-service-request-id": [
- "74071888-05e1-4966-a2f7-092943814a8b"
+ "58e59ba0-abe6-40e7-ac7f-af4f3cf0aa80"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2348,19 +2586,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023235Z:212a9552-2e61-4073-962f-e929d8cd28b1"
+ "WESTUS:20200826T114614Z:85e28991-0c88-46cf-b958-b7575b6037b1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:32:35 GMT"
+ "Wed, 26 Aug 2020 11:46:14 GMT"
],
"Content-Length": [
- "30"
+ "2341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2369,20 +2607,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"bd6a9c2a-6f8a-4cfc-8378-91dc62e39a38\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8dcac527-db4a-4d67-b57f-84739f35a717"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2392,17 +2636,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"e5356ef6-ffe3-4952-a78c-57c4af4e0a42\""
],
"x-ms-request-id": [
- "fa1dc895-cf20-42c3-92e5-4a975935dfe3"
+ "8e9dd509-be48-411c-82ef-48f15a5ec1e4"
],
"x-ms-correlation-request-id": [
- "1ed17460-a7a0-4e54-b6f7-e9bb775ba3e3"
+ "6c1d1588-7754-48ce-9012-fcc9c7ba1b0f"
],
"x-ms-arm-service-request-id": [
- "65aa2b05-3e25-4ae8-accb-1d2575b92227"
+ "73f85ef9-3a0a-417e-abb0-520166c180c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2412,19 +2656,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023245Z:1ed17460-a7a0-4e54-b6f7-e9bb775ba3e3"
+ "WESTUS:20200826T114716Z:6c1d1588-7754-48ce-9012-fcc9c7ba1b0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:32:45 GMT"
+ "Wed, 26 Aug 2020 11:47:16 GMT"
],
"Content-Length": [
- "30"
+ "2341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2433,20 +2677,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"e5356ef6-ffe3-4952-a78c-57c4af4e0a42\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e5356ef6-ffe3-4952-a78c-57c4af4e0a42\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2456,17 +2700,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\""
],
"x-ms-request-id": [
- "be38f1a8-a124-49df-942b-ed0939981990"
+ "d9bfe3b4-38f6-4481-81be-5258faf2a529"
],
"x-ms-correlation-request-id": [
- "de2e075d-7ab4-43b1-b098-7a1b7e6daf1d"
+ "8d183152-b6b0-4e24-80b6-d5622b6ca5ab"
],
"x-ms-arm-service-request-id": [
- "cc9edfe2-b598-4e4d-883e-0b4ffe1e88d6"
+ "36223385-374f-4e92-9982-8ae483adcb2d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2476,19 +2720,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023255Z:de2e075d-7ab4-43b1-b098-7a1b7e6daf1d"
+ "WESTUS:20200826T115628Z:8d183152-b6b0-4e24-80b6-d5622b6ca5ab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:32:55 GMT"
+ "Wed, 26 Aug 2020 11:56:27 GMT"
],
"Content-Length": [
- "30"
+ "2342"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2497,20 +2741,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "619d5413-2d63-43c9-bc1e-b643b5a095b5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2520,17 +2770,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\""
],
"x-ms-request-id": [
- "b9df623e-5563-4520-ab22-6c4106cb2622"
+ "a051cf8b-634d-44c8-8c63-54a55db71d9d"
],
"x-ms-correlation-request-id": [
- "ffe432d4-c913-4630-9783-b00ff30ab1f9"
+ "6362dee7-6989-447c-991d-75613554e02d"
],
"x-ms-arm-service-request-id": [
- "a1f5f2d2-4551-41a1-8c45-ade91979ae6e"
+ "ff06991c-868c-48ce-92ff-caf0aa1c4951"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2540,19 +2790,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023305Z:ffe432d4-c913-4630-9783-b00ff30ab1f9"
+ "WESTUS:20200826T115628Z:6362dee7-6989-447c-991d-75613554e02d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:05 GMT"
+ "Wed, 26 Aug 2020 11:56:28 GMT"
],
"Content-Length": [
- "30"
+ "2342"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2561,20 +2811,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/0eb83ed1-4507-41e3-8181-1bfba42697dd?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBlYjgzZWQxLTQ1MDctNDFlMy04MTgxLTFiZmJhNDI2OTdkZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9705a536-39a8-46d8-bcd1-2e0c7c253436"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2584,14 +2840,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "W/\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\""
+ ],
"x-ms-request-id": [
- "917fe40e-5e1d-4b8b-a4c3-82d9ce253c9f"
+ "3d94a580-403e-4b1c-a45d-2e95ec8fd5db"
],
"x-ms-correlation-request-id": [
- "788dca1b-c642-4321-bd72-4598ca936f40"
+ "16a258ce-59e5-4396-97d3-fd8db749b88c"
],
"x-ms-arm-service-request-id": [
- "829b0a4e-62b5-4e2d-9997-537eee0081d1"
+ "7b739c41-2c38-404d-a866-bed551f4950f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2601,19 +2860,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023315Z:788dca1b-c642-4321-bd72-4598ca936f40"
+ "WESTUS:20200826T115629Z:16a258ce-59e5-4396-97d3-fd8db749b88c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:15 GMT"
+ "Wed, 26 Aug 2020 11:56:28 GMT"
],
"Content-Length": [
- "29"
+ "2342"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2622,26 +2881,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM1MjAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9645da15-2e5c-4df9-8fb6-3aa8beda7cb4"
+ "d20ce4e0-a3d8-49e0-8269-8468c060b73f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2651,51 +2910,61 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "ETag": [
+ "W/\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\""
],
"x-ms-request-id": [
- "74e3dfbd-40e3-4876-b155-ee2aacce52ff"
+ "d1db6db8-c994-4d61-82dc-598a23181915"
],
"x-ms-correlation-request-id": [
- "74e3dfbd-40e3-4876-b155-ee2aacce52ff"
+ "eea7191f-b756-4c69-9c38-eaf5ad991a08"
],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023316Z:74e3dfbd-40e3-4876-b155-ee2aacce52ff"
+ "x-ms-arm-service-request-id": [
+ "077cd3bd-28c3-474c-ac3e-a5c51966a4b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T115629Z:eea7191f-b756-4c69-9c38-eaf5ad991a08"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:16 GMT"
+ "Wed, 26 Aug 2020 11:56:28 GMT"
+ ],
+ "Content-Length": [
+ "2342"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "158"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnServerConfigurations/ps5203' under resource group 'ps7860' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"5b8c5a1c-7602-4496-89a5-7755a5e9c0ba\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM1MjAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2706,16 +2975,16 @@
"no-cache"
],
"ETag": [
- "W/\"f399d78d-7a92-4cfa-95f1-5cd7c2271c52\""
+ "W/\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\""
],
"x-ms-request-id": [
- "25a1fb4c-89f8-41fa-9797-87d5c697988f"
+ "a2b64b03-2fa8-45a2-8044-213d6a6c4bec"
],
"x-ms-correlation-request-id": [
- "815e0dcf-0e01-4035-acd1-80a1ea21251c"
+ "3f2da34e-cb51-4129-9f32-8fbe69b0b738"
],
"x-ms-arm-service-request-id": [
- "afc799ac-8c19-47e9-9cc6-b2d108f48634"
+ "99fc5975-041c-43e6-97a0-24d144f6bae7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2725,19 +2994,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023328Z:815e0dcf-0e01-4035-acd1-80a1ea21251c"
+ "WESTUS:20200826T120401Z:3f2da34e-cb51-4129-9f32-8fbe69b0b738"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:28 GMT"
+ "Wed, 26 Aug 2020 12:04:00 GMT"
],
"Content-Length": [
- "2390"
+ "2319"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2746,26 +3015,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"f399d78d-7a92-4cfa-95f1-5cd7c2271c52\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM1MjAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26de4195-fb23-487a-8f8b-7e89a4987ced"
+ "a285ef14-9fe9-40b4-9960-9716a00d6599"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2776,16 +3045,16 @@
"no-cache"
],
"ETag": [
- "W/\"f399d78d-7a92-4cfa-95f1-5cd7c2271c52\""
+ "W/\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\""
],
"x-ms-request-id": [
- "0c3b16a2-4233-4cfb-80aa-198fdc34be61"
+ "e5adf737-7628-48e8-832c-bc9b5ba17e04"
],
"x-ms-correlation-request-id": [
- "fa24c6e8-9fc2-4d38-9f3b-d85e1f15c266"
+ "da727327-eac6-474f-8329-b27145e4b246"
],
"x-ms-arm-service-request-id": [
- "35e4afb9-83a1-4111-af87-d9ef0af30920"
+ "936de934-7768-438b-ba4b-df04d05de705"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2798,16 +3067,16 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023328Z:fa24c6e8-9fc2-4d38-9f3b-d85e1f15c266"
+ "WESTUS:20200826T120401Z:da727327-eac6-474f-8329-b27145e4b246"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:28 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "2390"
+ "2319"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2816,26 +3085,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"f399d78d-7a92-4cfa-95f1-5cd7c2271c52\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM1MjAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d17b7889-88aa-41f2-a852-469eab5517fe"
+ "d53193c1-76ce-4c68-bf48-6238c0fe63aa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -2846,16 +3115,16 @@
"no-cache"
],
"ETag": [
- "W/\"c9452775-e5d9-4d5e-a21a-cdf5a1b3c137\""
+ "W/\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\""
],
"x-ms-request-id": [
- "1dfd42d0-8e03-423d-a353-9964d8308d7e"
+ "db143773-dc89-4940-a38e-6101c6013495"
],
"x-ms-correlation-request-id": [
- "61c9942c-af5e-4512-8d21-eceb3b4fbb3f"
+ "aaac9fcd-bdf4-470e-b1fc-6e2bc06e43bd"
],
"x-ms-arm-service-request-id": [
- "92cc455c-34de-4605-964f-717dc0a4a2f6"
+ "a6636d48-8274-4ed6-9eb9-40974d81fd32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2868,16 +3137,16 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:61c9942c-af5e-4512-8d21-eceb3b4fbb3f"
+ "WESTUS:20200826T120438Z:aaac9fcd-bdf4-470e-b1fc-6e2bc06e43bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:08 GMT"
+ "Wed, 26 Aug 2020 12:04:37 GMT"
],
"Content-Length": [
- "2582"
+ "2319"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2886,32 +3155,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"c9452775-e5d9-4d5e-a21a-cdf5a1b3c137\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e2aafe33-f98b-44c0-a84d-a90c4cf52075\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM1MjAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"radiusServers\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n },\r\n \"name\": \"P2SConnectionConfigDefault\"\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91012218-0604-4594-a9c2-d7989b73d402"
+ "8dbde2cb-a69b-4c9a-b5fe-7738127ec9d9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2074"
+ "850"
]
},
"ResponseHeaders": {
@@ -2925,19 +3194,19 @@
"10"
],
"x-ms-request-id": [
- "ae17dd28-34e4-43bb-bc0c-5884ba39debc"
+ "a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/ae17dd28-34e4-43bb-bc0c-5884ba39debc?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "68bfbc4f-c995-45b7-a2f6-f526d9523b31"
+ "e5e2df12-69bd-4f7f-8f99-6bbe8e4c0de8"
],
"Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "66f43188-02e1-44b0-a257-b5e20bbbe1bc"
+ "c7a84bf1-a056-4397-bf24-21a46e9ea496"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2950,16 +3219,16 @@
"1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023318Z:68bfbc4f-c995-45b7-a2f6-f526d9523b31"
+ "WESTUS:20200826T110404Z:e5e2df12-69bd-4f7f-8f99-6bbe8e4c0de8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:18 GMT"
+ "Wed, 26 Aug 2020 11:04:03 GMT"
],
"Content-Length": [
- "2389"
+ "2339"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2968,20 +3237,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"59778681-44fe-45c3-8145-79e705613401\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"7ec20d23-dde5-4479-af90-7fa51df350b4\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"7ec20d23-dde5-4479-af90-7fa51df350b4\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\"\r\n ]\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/ae17dd28-34e4-43bb-bc0c-5884ba39debc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2FlMTdkZDI4LTM0ZTQtNDNiYi1iYzBjLTU4ODRiYTM5ZGViYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false\r\n },\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\"\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"location\": \"westcentralus\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "483e80d7-998b-425e-a458-571d2db1354b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1933"
]
},
"ResponseHeaders": {
@@ -2991,14 +3272,20 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "692fa437-b80c-4625-9513-b1818993de88"
+ "9427a952-e07b-4a5c-87d8-6ca6d7dae0d8"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "ba2d7855-e620-4283-a990-3b7f3adc399e"
+ "d7ca22e4-5b49-49e9-b211-f88e30a45fd4"
],
"x-ms-arm-service-request-id": [
- "cb8e9cc5-66de-4bf6-9e1f-417931159282"
+ "45fc000c-3107-4f91-8658-2863bd89965f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3007,20 +3294,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023328Z:ba2d7855-e620-4283-a990-3b7f3adc399e"
+ "WESTUS:20200826T114717Z:d7ca22e4-5b49-49e9-b211-f88e30a45fd4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:28 GMT"
+ "Wed, 26 Aug 2020 11:47:16 GMT"
],
"Content-Length": [
- "29"
+ "2340"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3029,26 +3316,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"36fd915d-dcfa-4cb6-b0d7-a62f82197ad9\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"36fd915d-dcfa-4cb6-b0d7-a62f82197ad9\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false\r\n },\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\"\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"customDnsServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"location\": \"westcentralus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b75ba662-13d9-42d5-83cd-36b698c3c7a7"
+ "9856fb5a-19f0-4956-adef-6b147b247cf2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1910"
]
},
"ResponseHeaders": {
@@ -3058,51 +3351,64 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "10"
],
"x-ms-request-id": [
- "d980b45b-4e0a-40f0-a997-ef80da9d713b"
+ "9c948ae5-f6ae-43cb-bc89-898b4872b05d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "d980b45b-4e0a-40f0-a997-ef80da9d713b"
+ "75f2caa2-3a8c-489d-bf13-a40515be0bdd"
],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023329Z:d980b45b-4e0a-40f0-a997-ef80da9d713b"
+ "x-ms-arm-service-request-id": [
+ "e0d62d3a-114a-40ff-83f4-4c785cd0316e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T115630Z:75f2caa2-3a8c-489d-bf13-a40515be0bdd"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:28 GMT"
+ "Wed, 26 Aug 2020 11:56:29 GMT"
+ ],
+ "Content-Length": [
+ "2317"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "149"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/p2sVpnGateways/ps5004' under resource group 'ps7860' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"name\": \"ps3649\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\",\r\n \"etag\": \"W/\\\"9d244402-8070-46a4-8e68-703c0c6851a1\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"9d244402-8070-46a4-8e68-703c0c6851a1\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3112,17 +3418,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"e69f9fa9-a49d-4172-b157-94f6af67b51a\""
+ "Retry-After": [
+ "10"
],
"x-ms-request-id": [
- "73797926-96a2-4f5d-a206-7bba1ead04d8"
+ "0026e3da-53c7-4180-8abc-6b533a57515c"
],
"x-ms-correlation-request-id": [
- "3c031944-3e51-4950-b02f-a2a30bd96da4"
+ "67349bb9-1c1b-4a12-9e2c-5c1eaa7ee7c1"
],
"x-ms-arm-service-request-id": [
- "022685d1-3ff8-494f-8014-ca284ef61cc5"
+ "8642c7ec-badb-426a-ab68-7d06f94a199a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3132,19 +3438,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11828"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030205Z:3c031944-3e51-4950-b02f-a2a30bd96da4"
+ "WESTUS:20200826T110414Z:67349bb9-1c1b-4a12-9e2c-5c1eaa7ee7c1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
+ "Wed, 26 Aug 2020 11:04:13 GMT"
],
"Content-Length": [
- "2360"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3153,26 +3459,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"e69f9fa9-a49d-4172-b157-94f6af67b51a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e69f9fa9-a49d-4172-b157-94f6af67b51a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\",\r\n \"8.8.8.8\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "0b51b34b-f7e3-4af1-b0b8-ed693bfbdec0"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3182,17 +3482,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"e69f9fa9-a49d-4172-b157-94f6af67b51a\""
+ "Retry-After": [
+ "20"
],
"x-ms-request-id": [
- "5a8435de-ef24-458f-b00d-5d0bd9da7721"
+ "21628264-ca1b-475f-a76b-18fc7b55a907"
],
"x-ms-correlation-request-id": [
- "68ed5165-1c46-4f1c-affc-50b0c305a3c8"
+ "3df1bbd6-dae8-4323-a9eb-7559a3d51d1c"
],
"x-ms-arm-service-request-id": [
- "adfa25c3-8617-4a90-8dae-7844e6550829"
+ "f39523a4-27f2-4840-8541-ed3dfa14c007"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3202,19 +3502,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030205Z:68ed5165-1c46-4f1c-affc-50b0c305a3c8"
+ "WESTUS:20200826T110424Z:3df1bbd6-dae8-4323-a9eb-7559a3d51d1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:04 GMT"
+ "Wed, 26 Aug 2020 11:04:23 GMT"
],
"Content-Length": [
- "2360"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3223,26 +3523,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"e69f9fa9-a49d-4172-b157-94f6af67b51a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e69f9fa9-a49d-4172-b157-94f6af67b51a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\",\r\n \"8.8.8.8\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "47e9b0ec-d29e-4f18-96bd-fda04067180d"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3252,17 +3546,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"e69f9fa9-a49d-4172-b157-94f6af67b51a\""
+ "Retry-After": [
+ "20"
],
"x-ms-request-id": [
- "21d30797-363d-4034-9749-94deba8c8a9e"
+ "197b3147-dda8-4c8f-af4d-65ce91c2c82c"
],
"x-ms-correlation-request-id": [
- "77b44074-8e40-46f4-8ee4-102f6a274892"
+ "260c50c2-68dd-4632-a82c-6b5764f39e8c"
],
"x-ms-arm-service-request-id": [
- "08d5bec7-825e-49f9-9a85-a3c7d668a969"
+ "d7022b4e-5157-4f49-93c3-27b06f8d587e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3272,19 +3566,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:77b44074-8e40-46f4-8ee4-102f6a274892"
+ "WESTUS:20200826T110444Z:260c50c2-68dd-4632-a82c-6b5764f39e8c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:08 GMT"
+ "Wed, 26 Aug 2020 11:04:44 GMT"
],
"Content-Length": [
- "2360"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3293,26 +3587,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"e69f9fa9-a49d-4172-b157-94f6af67b51a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"e69f9fa9-a49d-4172-b157-94f6af67b51a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\",\r\n \"8.8.8.8\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "cb02c3d5-6c72-4bee-82b0-6f25b30bd585"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3322,17 +3610,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"39cd31ce-adc5-4c2e-9fa2-f24a491122c6\""
+ "Retry-After": [
+ "40"
],
"x-ms-request-id": [
- "c455a704-c72b-40ca-a96c-8aef0b30da9c"
+ "72b24332-e522-4fa5-8c59-5e95261a30de"
],
"x-ms-correlation-request-id": [
- "895e827d-3ca9-4c6c-8d55-1439a8a6eed9"
+ "22f1885a-c095-467e-a9a3-15c9325fd9d4"
],
"x-ms-arm-service-request-id": [
- "8a7a7990-bd68-4e67-af48-4a7afd1644f7"
+ "6fac6feb-925a-4f6a-9c11-3be0cd1eb0c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3342,19 +3630,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030309Z:895e827d-3ca9-4c6c-8d55-1439a8a6eed9"
+ "WESTUS:20200826T110504Z:22f1885a-c095-467e-a9a3-15c9325fd9d4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:03:08 GMT"
+ "Wed, 26 Aug 2020 11:05:04 GMT"
],
"Content-Length": [
- "2360"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3363,20 +3651,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"39cd31ce-adc5-4c2e-9fa2-f24a491122c6\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"39cd31ce-adc5-4c2e-9fa2-f24a491122c6\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\",\r\n \"8.8.8.8\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3386,17 +3674,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"dc5885dd-2683-4d4b-88e5-c940558bd46a\""
+ "Retry-After": [
+ "40"
],
"x-ms-request-id": [
- "00aa54a5-1b09-4090-8cca-fe2d006e9af7"
+ "3bfd5229-11d8-4a3c-9ccf-584ecd176fc9"
],
"x-ms-correlation-request-id": [
- "f1bb5f29-1296-45c2-8803-f98b957bf779"
+ "cfcb47d6-ce07-4e37-b1fd-7528d5c582fa"
],
"x-ms-arm-service-request-id": [
- "03a94780-64ab-4c95-98fd-1ce2ea6f9164"
+ "50741212-47cc-4dea-aa7a-86fb3c288267"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3406,19 +3694,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030943Z:f1bb5f29-1296-45c2-8803-f98b957bf779"
+ "WESTUS:20200826T110544Z:cfcb47d6-ce07-4e37-b1fd-7528d5c582fa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:09:42 GMT"
+ "Wed, 26 Aug 2020 11:05:44 GMT"
],
"Content-Length": [
- "2299"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3427,26 +3715,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "1486c85f-6a4c-4582-bacc-3d799adf34a5"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3456,17 +3738,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"dc5885dd-2683-4d4b-88e5-c940558bd46a\""
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "e8f02ea6-f85c-4dd4-b7a2-3fe6b97d1eb5"
+ "0575ff67-b5c6-49b8-8984-02b9382593ed"
],
"x-ms-correlation-request-id": [
- "b825020e-76c0-4179-b259-4ca74139f06d"
+ "56791093-60fe-4811-a44a-3f47a01ea4ad"
],
"x-ms-arm-service-request-id": [
- "b2cd8052-d9da-4d99-8d9a-169a0888f8bb"
+ "995fcbc9-dcb0-4b75-9019-4cc397df67e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3476,19 +3758,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030943Z:b825020e-76c0-4179-b259-4ca74139f06d"
+ "WESTUS:20200826T110624Z:56791093-60fe-4811-a44a-3f47a01ea4ad"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:09:43 GMT"
+ "Wed, 26 Aug 2020 11:06:24 GMT"
],
"Content-Length": [
- "2299"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3497,26 +3779,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "050dd075-3b23-4d4f-b0dc-086cc0c4d485"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3526,17 +3802,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"dc5885dd-2683-4d4b-88e5-c940558bd46a\""
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "73baf7f0-89c6-4f4d-90c6-0212eb13f37f"
+ "598676b1-db13-4fc2-876f-19bcdd67f521"
],
"x-ms-correlation-request-id": [
- "4fbc86ed-6d99-455a-9202-ac1408f68719"
+ "159505be-4122-40cb-a285-4ef8beb06928"
],
"x-ms-arm-service-request-id": [
- "a85f65a7-0f93-4eec-92f1-583ad5c5a675"
+ "277914f8-c3e7-409b-a64e-448010d54d80"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3546,19 +3822,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030944Z:4fbc86ed-6d99-455a-9202-ac1408f68719"
+ "WESTUS:20200826T110805Z:159505be-4122-40cb-a285-4ef8beb06928"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:09:43 GMT"
+ "Wed, 26 Aug 2020 11:08:04 GMT"
],
"Content-Length": [
- "2299"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3567,26 +3843,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "580f6427-e9a8-4938-95f4-72d872acbcd9"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3596,17 +3866,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"dc5885dd-2683-4d4b-88e5-c940558bd46a\""
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "e61ed98b-7cc5-4db3-b3d7-15c88366d19a"
+ "239fe85d-ee90-4586-a287-38a72ac5971e"
],
"x-ms-correlation-request-id": [
- "621d4b2f-423b-49ac-a534-f861921f3f74"
+ "c01bd60f-7ff3-4918-82d9-c122bbfa6ae8"
],
"x-ms-arm-service-request-id": [
- "424eb929-55ea-4513-b666-5ead85221fd5"
+ "8c7ad5bb-bf2d-4bc5-97c3-3d9b92ffb22b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3616,19 +3886,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030944Z:621d4b2f-423b-49ac-a534-f861921f3f74"
+ "WESTUS:20200826T110945Z:c01bd60f-7ff3-4918-82d9-c122bbfa6ae8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:09:43 GMT"
+ "Wed, 26 Aug 2020 11:09:45 GMT"
],
"Content-Length": [
- "2299"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3637,20 +3907,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"dc5885dd-2683-4d4b-88e5-c940558bd46a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3660,17 +3930,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\""
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "59dd9ca5-49c3-4b03-a9fb-6a9392ade705"
+ "df101106-533b-4834-8f7a-79512a211c60"
],
"x-ms-correlation-request-id": [
- "0139a7dd-e637-4e8c-b0ad-a8216a24d22d"
+ "91739bb9-76be-44df-a2ef-3db4f12ee7c3"
],
"x-ms-arm-service-request-id": [
- "f23865bc-7247-40db-8aa8-5c9379d7982c"
+ "a5f5534d-c828-4b1d-9d27-9b53f4474e5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3680,19 +3950,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031618Z:0139a7dd-e637-4e8c-b0ad-a8216a24d22d"
+ "WESTUS:20200826T111125Z:91739bb9-76be-44df-a2ef-3db4f12ee7c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:17 GMT"
+ "Wed, 26 Aug 2020 11:11:24 GMT"
],
"Content-Length": [
- "2276"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3701,26 +3971,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "c6a58681-96b9-461a-b06e-5591c6ca3e26"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3730,17 +3994,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\""
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "437319cd-9198-49d2-bd70-04df7eb0530e"
+ "49096b6f-92bf-4fbd-b4a0-412855bccc15"
],
"x-ms-correlation-request-id": [
- "77cc4ae2-cfe8-452c-a7a3-6e764ec766a9"
+ "0d97be54-f47f-42d9-84ef-c4e000385f85"
],
"x-ms-arm-service-request-id": [
- "6bb90415-9d79-491b-bdbd-6ee6fafc37a4"
+ "b6958fde-3ee4-435f-a884-6f41e769695d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3750,19 +4014,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031618Z:77cc4ae2-cfe8-452c-a7a3-6e764ec766a9"
+ "WESTUS:20200826T111305Z:0d97be54-f47f-42d9-84ef-c4e000385f85"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:17 GMT"
+ "Wed, 26 Aug 2020 11:13:05 GMT"
],
"Content-Length": [
- "2276"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3771,26 +4035,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "52011cfc-1549-4e25-9ebc-ce5c90b0e5d6"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3800,17 +4058,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\""
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "61222133-b690-45a5-9e99-dcd3500225ad"
+ "c49bca87-aa96-48bb-81b0-5f1b436915ee"
],
"x-ms-correlation-request-id": [
- "052116ce-352c-4653-85b0-81cae34b8687"
+ "8ecdde7d-0780-4bcf-bdbc-6ada223e262f"
],
"x-ms-arm-service-request-id": [
- "3f6bbd89-7e6f-4742-9964-2e0ecb3caeb7"
+ "2a1f62fd-b31e-4bd0-8d2e-161da766754e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3820,19 +4078,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031653Z:052116ce-352c-4653-85b0-81cae34b8687"
+ "WESTUS:20200826T111445Z:8ecdde7d-0780-4bcf-bdbc-6ada223e262f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:52 GMT"
+ "Wed, 26 Aug 2020 11:14:45 GMT"
],
"Content-Length": [
- "2276"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3841,32 +4099,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"2f00f586-1fcd-432a-bbff-8a5ed4a271f0\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n }\r\n },\r\n \"name\": \"P2SConnectionConfigDefault\"\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"customDnsServers\": [\r\n \"7.7.7.7\",\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "ba2f18f6-126c-4005-a18e-843160357a2b"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "825"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3877,22 +4123,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "eda73738-d417-47eb-9390-abeec45ea9b3"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01"
+ "88969b7d-7d51-41db-9cf7-2cc438833da9"
],
"x-ms-correlation-request-id": [
- "4d562761-86eb-4fea-b3b0-fa008ce9500f"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "7520c354-2ea7-4c02-85cc-fd511481f1ee"
],
"x-ms-arm-service-request-id": [
- "bb52547f-7dd5-45b5-9689-703710553be7"
+ "6ca81654-adde-45b8-bf7a-0289a3d52c3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3901,20 +4141,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023331Z:4d562761-86eb-4fea-b3b0-fa008ce9500f"
+ "WESTUS:20200826T111625Z:7520c354-2ea7-4c02-85cc-fd511481f1ee"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:30 GMT"
+ "Wed, 26 Aug 2020 11:16:25 GMT"
],
"Content-Length": [
- "2358"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3923,32 +4163,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"9ad88465-b9d1-4fb3-a467-377da72be0c1\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"9ad88465-b9d1-4fb3-a467-377da72be0c1\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.3.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"7.7.7.7\",\r\n \"8.8.8.8\"\r\n ]\r\n }\r\n}",
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n }\r\n },\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\"\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"location\": \"westcentralus\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "ca2187b3-8948-449e-a815-8b8ff2dd7fec"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "1140"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -3959,19 +4187,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "cfc3ab48-f5ff-4a38-a616-09b9dd24e03a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01"
+ "0cafa022-acfd-4e8f-b11d-048bb6f56acf"
],
"x-ms-correlation-request-id": [
- "f841137f-f7d8-4ce9-848c-34b6e48498f7"
+ "440fea88-4a59-4f50-8757-fb477b149a80"
],
"x-ms-arm-service-request-id": [
- "550f9ffd-7713-47d9-a977-166de9b501d4"
+ "2405802c-becb-4dc3-8c13-d7f255952142"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3980,20 +4205,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030310Z:f841137f-f7d8-4ce9-848c-34b6e48498f7"
+ "WESTUS:20200826T111806Z:440fea88-4a59-4f50-8757-fb477b149a80"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:03:09 GMT"
+ "Wed, 26 Aug 2020 11:18:05 GMT"
],
"Content-Length": [
- "2297"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4002,32 +4227,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"799630f2-1a8c-4631-83d5-6e2868f3fb78\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"799630f2-1a8c-4631-83d5-6e2868f3fb78\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": [\r\n \"9.9.9.9\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n }\r\n },\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\"\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"customDnsServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"location\": \"westcentralus\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "f1c818c3-4e2b-4aae-a8da-81fff353bb90"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "1117"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4038,19 +4251,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "37459442-ae44-4901-a69d-d1cdb5d96316"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01"
+ "d8d15d8d-4d6d-48bf-8471-7fe366a438d5"
],
"x-ms-correlation-request-id": [
- "9a1b52a7-41ee-4785-98d2-b677ac287dbc"
+ "d30b87bb-8abc-4e78-bfa9-a811acf94d01"
],
"x-ms-arm-service-request-id": [
- "e08d61fc-5384-4836-873d-fff05b526300"
+ "704ef3e9-9839-4ac0-833d-3eb968b0bfb4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4059,20 +4269,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030944Z:9a1b52a7-41ee-4785-98d2-b677ac287dbc"
+ "WESTUS:20200826T111946Z:d30b87bb-8abc-4e78-bfa9-a811acf94d01"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:09:44 GMT"
+ "Wed, 26 Aug 2020 11:19:46 GMT"
],
"Content-Length": [
- "2274"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4081,20 +4291,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps5004\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\",\r\n \"etag\": \"W/\\\"1e62e721-44cb-4a62-964a-5ca01e0c7dbd\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877\"\r\n },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n \"etag\": \"W/\\\"1e62e721-44cb-4a62-964a-5ca01e0c7dbd\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.2.0/24\",\r\n \"192.168.4.0/24\"\r\n ]\r\n },\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"customDnsServers\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4105,16 +4315,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "9cc3ad0a-6d67-4a84-acba-029980c7f3d8"
+ "2063c5a2-708a-4694-bc8e-2926ce91fcf1"
],
"x-ms-correlation-request-id": [
- "d58805f4-290c-4ec3-a274-7ded700343a1"
+ "ed297009-0af8-45ae-a60c-13af9cc6efc7"
],
"x-ms-arm-service-request-id": [
- "d77c5c51-c5fb-479b-9091-a0a12536ec4d"
+ "e9cb8648-c349-4a15-b152-21c585239178"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4124,16 +4334,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023341Z:d58805f4-290c-4ec3-a274-7ded700343a1"
+ "WESTUS:20200826T112126Z:ed297009-0af8-45ae-a60c-13af9cc6efc7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:40 GMT"
+ "Wed, 26 Aug 2020 11:21:25 GMT"
],
"Content-Length": [
"30"
@@ -4149,16 +4359,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4169,16 +4379,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "5911c338-51a6-4afe-a273-63f86bde4490"
+ "700493ff-7332-41ff-813d-7f7479667022"
],
"x-ms-correlation-request-id": [
- "d34dcc93-2509-46ea-96b4-666c2950e060"
+ "25c05c3c-1a1c-414e-831c-6c2d0578a7af"
],
"x-ms-arm-service-request-id": [
- "eadd92f5-d4d8-42ff-a444-57d36288cb91"
+ "843ed118-dac2-4ec4-bdb3-e6c33ccb2000"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4188,16 +4398,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023351Z:d34dcc93-2509-46ea-96b4-666c2950e060"
+ "WESTUS:20200826T112306Z:25c05c3c-1a1c-414e-831c-6c2d0578a7af"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:33:50 GMT"
+ "Wed, 26 Aug 2020 11:23:06 GMT"
],
"Content-Length": [
"30"
@@ -4213,16 +4423,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4233,16 +4443,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "f0093f19-6069-4ee8-aff1-b7cdc46fa644"
+ "a08c8ca2-24b4-4cc1-9f05-99a9886548d7"
],
"x-ms-correlation-request-id": [
- "083832cc-3e57-4a9c-8919-4c638f609262"
+ "966910fc-1409-4c41-b973-ac7a50d21380"
],
"x-ms-arm-service-request-id": [
- "2acc2a04-b902-47b2-9486-b856bad9a6a4"
+ "5f7d954a-9686-4be2-9b59-4b883e308688"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4252,16 +4462,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11982"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023401Z:083832cc-3e57-4a9c-8919-4c638f609262"
+ "WESTUS:20200826T112446Z:966910fc-1409-4c41-b973-ac7a50d21380"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:34:01 GMT"
+ "Wed, 26 Aug 2020 11:24:46 GMT"
],
"Content-Length": [
"30"
@@ -4277,16 +4487,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4297,16 +4507,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "ac8531a2-aabd-45e2-a8c3-05aaf20c0889"
+ "c229f582-725d-4b32-96e1-4bab8cc1b1fb"
],
"x-ms-correlation-request-id": [
- "1d2d09ca-d529-4ab4-ad4e-80c35548255f"
+ "a732f665-70a6-4f10-a8af-8ea02d2560ed"
],
"x-ms-arm-service-request-id": [
- "32f74be7-3afa-4189-a81f-e11c255d0ef4"
+ "fa54c9a4-dcbb-4763-906d-61f57ba99b67"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4316,16 +4526,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023411Z:1d2d09ca-d529-4ab4-ad4e-80c35548255f"
+ "WESTUS:20200826T112626Z:a732f665-70a6-4f10-a8af-8ea02d2560ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:34:11 GMT"
+ "Wed, 26 Aug 2020 11:26:26 GMT"
],
"Content-Length": [
"30"
@@ -4341,16 +4551,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4361,16 +4571,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "caa8021c-46f6-46ba-a35e-cb48f948cd5d"
+ "0c0f9eba-08c2-4492-9856-5c53a2a73518"
],
"x-ms-correlation-request-id": [
- "bf931c5b-5c2c-4c6b-aeab-ac00c6fecc30"
+ "0cb474dc-1181-434c-9879-6f85c32c0cb0"
],
"x-ms-arm-service-request-id": [
- "987fcfb9-ebf3-401f-8406-01c71d9ab775"
+ "8edfa8e0-a838-479f-9467-46d54c2a50ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4380,16 +4590,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023422Z:bf931c5b-5c2c-4c6b-aeab-ac00c6fecc30"
+ "WESTUS:20200826T112807Z:0cb474dc-1181-434c-9879-6f85c32c0cb0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:34:21 GMT"
+ "Wed, 26 Aug 2020 11:28:06 GMT"
],
"Content-Length": [
"30"
@@ -4405,16 +4615,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4425,16 +4635,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "c63021ab-7714-4ef0-a3d4-c2609ef7f1f8"
+ "90252273-2444-4260-9f04-ad131fb2f410"
],
"x-ms-correlation-request-id": [
- "2119d796-bc14-4a9e-8600-15ae32c0693f"
+ "945fe8e8-3ae8-44e6-9249-25cd1896d4fc"
],
"x-ms-arm-service-request-id": [
- "89c4aeea-38a1-45bf-ba28-b00380f518fa"
+ "d33262dc-aff9-4746-ab43-59701a390c77"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4444,16 +4654,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023432Z:2119d796-bc14-4a9e-8600-15ae32c0693f"
+ "WESTUS:20200826T112947Z:945fe8e8-3ae8-44e6-9249-25cd1896d4fc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:34:31 GMT"
+ "Wed, 26 Aug 2020 11:29:46 GMT"
],
"Content-Length": [
"30"
@@ -4469,16 +4679,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a0b4bbfc-c19e-40ee-9b0a-f999a4530a3d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwYjRiYmZjLWMxOWUtNDBlZS05YjBhLWY5OTlhNDUzMGEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4488,17 +4698,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "28141d42-c0ab-487c-8dc8-7e4f29f355d8"
+ "147a8a7b-42fd-469b-a75d-b64bfa3af097"
],
"x-ms-correlation-request-id": [
- "fa325d4b-0d4d-41d6-ae46-0d14aa2a2c39"
+ "645f02a8-d7f4-41a1-8099-93366decc85d"
],
"x-ms-arm-service-request-id": [
- "9c29634d-4db4-44c6-9998-32f70219af02"
+ "3ce3e3c3-1d4a-4428-a4ad-e2bd5e46b2fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4508,19 +4715,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023442Z:fa325d4b-0d4d-41d6-ae46-0d14aa2a2c39"
+ "WESTUS:20200826T113127Z:645f02a8-d7f4-41a1-8099-93366decc85d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:34:41 GMT"
+ "Wed, 26 Aug 2020 11:31:26 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4529,84 +4736,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649/reset?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5L3Jlc2V0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6b4d417f-592d-4fd8-88cc-9d68ea02d2dc"
- ],
- "x-ms-correlation-request-id": [
- "aeee8d1d-01fa-4655-bb48-f63854935a99"
- ],
- "x-ms-arm-service-request-id": [
- "91f5ae8b-ebcd-4015-a1bf-0b396ddff723"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023452Z:aeee8d1d-01fa-4655-bb48-f63854935a99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 02:34:51 GMT"
- ],
- "Content-Length": [
- "30"
+ "x-ms-client-request-id": [
+ "cf656453-2795-420d-9e8a-a22befc658ec"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Accept-Language": [
+ "en-US"
],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4616,145 +4765,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "4ccae858-6d0f-41b0-b4de-54c910a614e8"
- ],
- "x-ms-correlation-request-id": [
- "cb98da75-7f36-4224-bb26-e202521b85d6"
- ],
- "x-ms-arm-service-request-id": [
- "e6224cf0-5fea-4410-aee5-2cb6f4789e28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023502Z:cb98da75-7f36-4224-bb26-e202521b85d6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 02:35:01 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4cbe9b3c-e2d9-4b7a-88f7-e81b98f339bd"
- ],
- "x-ms-correlation-request-id": [
- "22437a95-9cac-4d2a-ae8d-171bd7f04d13"
- ],
- "x-ms-arm-service-request-id": [
- "38fed942-a0ae-4b1e-b02e-981ee247136e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023512Z:22437a95-9cac-4d2a-ae8d-171bd7f04d13"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 02:35:12 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "bfdbd406-7a77-44a1-8e96-4fb54e672e91"
],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "2f33e31c-feb9-4377-8240-e04bb084bd94"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "4846da3b-4bf4-4d49-a2ed-5ebfbba9a154"
+ "4df3ad31-50f8-4c7b-9a1a-7d1faaafda28"
],
"x-ms-arm-service-request-id": [
- "16571281-dbb6-4ce5-8c03-9848cee55afc"
+ "929e0fbf-f933-49af-a0c1-ae02685a3aee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4763,106 +4790,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023522Z:4846da3b-4bf4-4d49-a2ed-5ebfbba9a154"
+ "WESTUS:20200826T113128Z:4df3ad31-50f8-4c7b-9a1a-7d1faaafda28"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:35:22 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 26 Aug 2020 11:31:28 GMT"
],
"Expires": [
"-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "db74ebd6-fb5a-4872-a553-4fe0ae4606d5"
- ],
- "x-ms-correlation-request-id": [
- "53301777-4fde-4de8-97d1-c032e583d2dc"
- ],
- "x-ms-arm-service-request-id": [
- "6d6a6a46-afbb-4e21-9c02-fc4c84daf0f3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T023532Z:53301777-4fde-4de8-97d1-c032e583d2dc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 02:35:32 GMT"
],
"Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4876,13 +4836,13 @@
"10"
],
"x-ms-request-id": [
- "a0924525-4aff-4b73-9679-f81b47acb4a7"
+ "7ca0e5a7-54d6-4dd9-a3c8-c93a78eb24b0"
],
"x-ms-correlation-request-id": [
- "320da5c4-a745-4adb-a1e6-6bb41c062915"
+ "48b28717-683f-4b39-91f6-76c7a903f1ed"
],
"x-ms-arm-service-request-id": [
- "0e51e3ef-559b-4a98-a52d-f100bcba3980"
+ "694760cb-00a0-48e5-84e0-ce08b861692f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4892,16 +4852,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023542Z:320da5c4-a745-4adb-a1e6-6bb41c062915"
+ "WESTUS:20200826T113138Z:48b28717-683f-4b39-91f6-76c7a903f1ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:35:42 GMT"
+ "Wed, 26 Aug 2020 11:31:38 GMT"
],
"Content-Length": [
"30"
@@ -4917,16 +4877,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -4937,16 +4897,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "2ada2390-92ac-43f9-8850-ca816b5346b1"
+ "66c60d57-ecd9-4e1b-afbe-871d32260d03"
],
"x-ms-correlation-request-id": [
- "eeedcaf0-4498-4cb3-91a7-c5fd7933248f"
+ "d294f3a3-8690-4087-9d81-f278ca58285d"
],
"x-ms-arm-service-request-id": [
- "772b040a-9587-4391-91f8-63a31eacdd0c"
+ "2c459067-c9bf-420f-84d7-28adfe99cfc6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4956,16 +4916,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023552Z:eeedcaf0-4498-4cb3-91a7-c5fd7933248f"
+ "WESTUS:20200826T113149Z:d294f3a3-8690-4087-9d81-f278ca58285d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:35:52 GMT"
+ "Wed, 26 Aug 2020 11:31:48 GMT"
],
"Content-Length": [
"30"
@@ -4981,16 +4941,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5001,16 +4961,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "b079fa5d-a747-4a83-b38c-88746d61e969"
+ "9616a478-b14d-4183-ae50-a3f77db0ddd6"
],
"x-ms-correlation-request-id": [
- "d5701d88-3244-482c-8fdc-d6d80bcbe718"
+ "0bf69159-6cd4-43c7-aa76-de29b2e5e88d"
],
"x-ms-arm-service-request-id": [
- "954b31af-95a2-4adf-bc18-0df47acdcc28"
+ "93c67074-395c-472f-be46-de85b1aad3b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5020,16 +4980,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023602Z:d5701d88-3244-482c-8fdc-d6d80bcbe718"
+ "WESTUS:20200826T113209Z:0bf69159-6cd4-43c7-aa76-de29b2e5e88d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:36:02 GMT"
+ "Wed, 26 Aug 2020 11:32:08 GMT"
],
"Content-Length": [
"30"
@@ -5045,16 +5005,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5065,16 +5025,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "05499000-5c97-4cfa-8b15-8240eec694a6"
+ "04d98cfa-181e-49f5-b50f-5656530670a4"
],
"x-ms-correlation-request-id": [
- "0d3e442a-cf67-407c-9581-eee067b4a922"
+ "5311ed22-80dd-4378-8bf8-5c80e373868d"
],
"x-ms-arm-service-request-id": [
- "0269fb56-ffb9-482b-b2ad-67640673a1ae"
+ "20c21f29-eae5-4b70-8caf-d5eb3589d8f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5084,16 +5044,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023612Z:0d3e442a-cf67-407c-9581-eee067b4a922"
+ "WESTUS:20200826T113249Z:5311ed22-80dd-4378-8bf8-5c80e373868d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:36:12 GMT"
+ "Wed, 26 Aug 2020 11:32:48 GMT"
],
"Content-Length": [
"30"
@@ -5109,16 +5069,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5129,16 +5089,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "dcc3c86f-0bca-436d-a508-7b349b3fcd09"
+ "2fd88985-7a47-4bc9-be1c-6474e5e893b1"
],
"x-ms-correlation-request-id": [
- "4af9c83e-8393-4a2c-a5d4-666b14d73fc2"
+ "9629a6cf-b3d3-4145-893d-c14663f571f1"
],
"x-ms-arm-service-request-id": [
- "d7ced9fc-e745-4f5e-9093-8c6939806307"
+ "1bac99c3-1cbc-45e2-b4b1-fb39a4435f31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5148,16 +5108,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023622Z:4af9c83e-8393-4a2c-a5d4-666b14d73fc2"
+ "WESTUS:20200826T113429Z:9629a6cf-b3d3-4145-893d-c14663f571f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:36:22 GMT"
+ "Wed, 26 Aug 2020 11:34:29 GMT"
],
"Content-Length": [
"30"
@@ -5173,16 +5133,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5193,16 +5153,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "232eaa6f-cad3-4268-a352-20c7bf4c5eb2"
+ "10f0c38c-d9f8-447c-a913-250503b99579"
],
"x-ms-correlation-request-id": [
- "5c4de67e-f801-4feb-8c06-6bc41cc8b6b9"
+ "720753b0-7686-4248-afd3-ec1b6ea2f6dc"
],
"x-ms-arm-service-request-id": [
- "c636901a-d3d0-4af5-8f36-db8a26d29904"
+ "e71e882e-355e-492d-bbbe-adf75d85f4b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5212,16 +5172,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023633Z:5c4de67e-f801-4feb-8c06-6bc41cc8b6b9"
+ "WESTUS:20200826T113609Z:720753b0-7686-4248-afd3-ec1b6ea2f6dc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:36:32 GMT"
+ "Wed, 26 Aug 2020 11:36:08 GMT"
],
"Content-Length": [
"30"
@@ -5237,16 +5197,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5257,16 +5217,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "76110add-cc7a-4723-ac10-28e4d0616b34"
+ "dfbf8efa-62d4-4fa0-a0d6-c9dbbaab1072"
],
"x-ms-correlation-request-id": [
- "a84633e6-f116-4ecf-a024-3735e85e75ad"
+ "c8f6719f-0c71-4ca9-b5ab-8238fa746660"
],
"x-ms-arm-service-request-id": [
- "7c52904a-6974-45e0-a82b-6b4c4412d523"
+ "a008074b-1535-4889-87da-0a774c29ae10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5276,16 +5236,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023643Z:a84633e6-f116-4ecf-a024-3735e85e75ad"
+ "WESTUS:20200826T113749Z:c8f6719f-0c71-4ca9-b5ab-8238fa746660"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:36:42 GMT"
+ "Wed, 26 Aug 2020 11:37:49 GMT"
],
"Content-Length": [
"30"
@@ -5301,16 +5261,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5321,16 +5281,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "49143e1a-5e44-4b23-95f7-a49533074c08"
+ "b4977362-f353-4000-8afb-6f4767863a77"
],
"x-ms-correlation-request-id": [
- "7b0dc949-7865-4fe0-a62f-ee2133fadca5"
+ "d06f9c15-4198-4fc9-91b9-773577507fc0"
],
"x-ms-arm-service-request-id": [
- "d1b7cf27-f3d9-42cd-afc0-b527f0ed35c1"
+ "570c68c0-e784-44f7-af73-50d9982407ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5340,16 +5300,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023653Z:7b0dc949-7865-4fe0-a62f-ee2133fadca5"
+ "WESTUS:20200826T113929Z:d06f9c15-4198-4fc9-91b9-773577507fc0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:36:52 GMT"
+ "Wed, 26 Aug 2020 11:39:29 GMT"
],
"Content-Length": [
"30"
@@ -5365,16 +5325,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5385,16 +5345,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "b5787b6c-d089-436e-a99c-6e0fa2677847"
+ "8dec00c6-0d85-4e92-8e49-b34763f67292"
],
"x-ms-correlation-request-id": [
- "36f1ef42-457f-40b5-bf9e-d3c0f13d2ddd"
+ "eab74e68-14d8-4c52-bab1-6b6415cb957d"
],
"x-ms-arm-service-request-id": [
- "7bce216d-9e3c-4ea0-b444-019b188e5a14"
+ "7ac28e41-2cb9-4f95-84e6-a96476653674"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5404,16 +5364,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023703Z:36f1ef42-457f-40b5-bf9e-d3c0f13d2ddd"
+ "WESTUS:20200826T114110Z:eab74e68-14d8-4c52-bab1-6b6415cb957d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:37:02 GMT"
+ "Wed, 26 Aug 2020 11:41:09 GMT"
],
"Content-Length": [
"30"
@@ -5429,16 +5389,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5449,16 +5409,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "45f6f63b-e5ae-434b-a476-710c64e824ca"
+ "71084b7c-867f-41b9-970f-4852ac945da5"
],
"x-ms-correlation-request-id": [
- "65130a4d-9135-403d-ad16-4d2128323fb0"
+ "96d705e9-0f81-4598-8213-50022b939505"
],
"x-ms-arm-service-request-id": [
- "94cc5a78-95f4-4224-98c1-2bf2c06eac94"
+ "4fa79b7b-e30b-4ffd-bf0f-3e3e9933bbfe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5468,16 +5428,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023713Z:65130a4d-9135-403d-ad16-4d2128323fb0"
+ "WESTUS:20200826T114250Z:96d705e9-0f81-4598-8213-50022b939505"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:37:12 GMT"
+ "Wed, 26 Aug 2020 11:42:49 GMT"
],
"Content-Length": [
"30"
@@ -5493,16 +5453,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5513,16 +5473,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "799061db-fbae-402b-ab07-d40fc83c2ae8"
+ "288a6832-aa52-4002-a356-2e97dc753f57"
],
"x-ms-correlation-request-id": [
- "af5f0b3a-7fe9-4e57-ad48-b366cceea0c3"
+ "7e97d132-cd4a-413c-91b1-2bb6207645e0"
],
"x-ms-arm-service-request-id": [
- "27f12dd0-a380-4430-841d-18bdc86ddd4e"
+ "49516694-cc3c-4fa6-8473-6dd812e9b52c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5532,16 +5492,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023723Z:af5f0b3a-7fe9-4e57-ad48-b366cceea0c3"
+ "WESTUS:20200826T114430Z:7e97d132-cd4a-413c-91b1-2bb6207645e0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:37:23 GMT"
+ "Wed, 26 Aug 2020 11:44:29 GMT"
],
"Content-Length": [
"30"
@@ -5557,16 +5517,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5576,17 +5536,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "1742b192-cf74-4893-a9e9-58dd46baab14"
+ "5d28329c-31b1-4595-91c5-46593a7c393c"
],
"x-ms-correlation-request-id": [
- "3f294b7d-4ec6-4209-bb47-a78bd124d8b9"
+ "fdc7c12a-eb57-4fcc-88cd-7cee36ddd13e"
],
"x-ms-arm-service-request-id": [
- "e2adf8aa-7fc7-4bf1-9ec1-4973f8b9cc35"
+ "d200bbb1-4bc7-461d-bc95-b7e84c36f80d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5596,19 +5553,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023733Z:3f294b7d-4ec6-4209-bb47-a78bd124d8b9"
+ "WESTUS:20200826T114610Z:fdc7c12a-eb57-4fcc-88cd-7cee36ddd13e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:37:33 GMT"
+ "Wed, 26 Aug 2020 11:46:09 GMT"
],
"Content-Length": [
- "30"
+ "50"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5617,20 +5574,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2JmZGJkNDA2LTdhNzctNDRhMS04ZTk2LTRmYjU0ZTY3MmU5MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5640,17 +5597,20 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01"
],
"x-ms-request-id": [
- "52d9cee1-3043-46ab-a2c1-6421a570c3d4"
+ "bfdbd406-7a77-44a1-8e96-4fb54e672e91"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/bfdbd406-7a77-44a1-8e96-4fb54e672e91?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "4e75038e-674f-4415-ab6e-e28d28c9b2c1"
+ "4df3ad31-50f8-4c7b-9a1a-7d1faaafda28"
],
"x-ms-arm-service-request-id": [
- "221c94a2-b50a-4def-8a5a-37ac6fb54dc4"
+ "929e0fbf-f933-49af-a0c1-ae02685a3aee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5660,19 +5620,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023743Z:4e75038e-674f-4415-ab6e-e28d28c9b2c1"
+ "WESTUS:20200826T114610Z:d766d604-fec3-45dd-bd2f-5efb87e6d005"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:37:43 GMT"
+ "Wed, 26 Aug 2020 11:46:10 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5681,20 +5641,29 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "null",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953/vpnServerConfigurations?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzL3ZwblNlcnZlckNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "null",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d93347d8-d1b7-48a1-b65a-81428c3dc57c"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "4"
]
},
"ResponseHeaders": {
@@ -5704,17 +5673,20 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "823e83a3-45f8-4808-b771-c1117acc0938"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
],
"x-ms-correlation-request-id": [
- "ed78373a-cef4-42af-b4f9-6435b35f05a6"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "d849f07b-6ec8-4a43-a982-49a83c07e1e3"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5723,20 +5695,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023753Z:ed78373a-cef4-42af-b4f9-6435b35f05a6"
+ "WESTUS:20200826T114611Z:1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:37:53 GMT"
+ "Wed, 26 Aug 2020 11:46:10 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5745,20 +5717,29 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953/vpnServerConfigurations?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzL3ZwblNlcnZlckNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "null",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "443835fb-6305-45e8-b3b5-024fca145ed8"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "4"
]
},
"ResponseHeaders": {
@@ -5768,17 +5749,20 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b47092d2-2a55-4fea-9a9f-25b69a760223"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
],
"x-ms-correlation-request-id": [
- "cae7f66a-b3ff-49a7-a3ba-70015015afb4"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "99e43522-b935-4f5f-9f7c-739ca00f79cf"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5787,20 +5771,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023803Z:cae7f66a-b3ff-49a7-a3ba-70015015afb4"
+ "WESTUS:20200826T120401Z:5078cc08-0af2-4ff1-9423-890883f5db58"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:38:03 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5809,20 +5793,29 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953/vpnServerConfigurations?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzL3ZwblNlcnZlckNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "null",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "774ba1cc-6790-49cd-80e0-0a96f9ccf44b"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "4"
]
},
"ResponseHeaders": {
@@ -5832,17 +5825,20 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a5c2b15a-4f92-422d-861a-f5ada58e3b61"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
],
"x-ms-correlation-request-id": [
- "641383dd-3358-406f-823d-96e8835d9a95"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "740e5a84-4244-4df3-82df-1e9d20402636"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5851,20 +5847,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023813Z:641383dd-3358-406f-823d-96e8835d9a95"
+ "WESTUS:20200826T121844Z:cc04b199-f141-4642-a2c0-29e71d672335"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:38:13 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5873,20 +5869,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5896,17 +5892,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "eafe9e0b-b692-4113-9a0e-f7b432092a0c"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b74c0146-6b6c-4f06-a5ea-d1ca9746768c"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "ab3d2ad2-aafd-4629-b262-ba943b91aa87"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5916,19 +5918,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023823Z:b74c0146-6b6c-4f06-a5ea-d1ca9746768c"
+ "WESTUS:20200826T114611Z:7a9cdb4c-e5db-4821-946f-c3331b91fd5f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:38:23 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5937,20 +5939,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -5960,17 +5962,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e4c7d5f9-679b-4aaa-ad3f-81b7fa49c64b"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "832c3628-f63e-4845-9eeb-29bea4cfea46"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "699a8b7b-25c6-444c-a3db-e3264ca97ada"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5980,19 +5988,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023833Z:832c3628-f63e-4845-9eeb-29bea4cfea46"
+ "WESTUS:20200826T114611Z:165f2099-c18c-459b-be05-f617d13781d7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:38:33 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6001,20 +6009,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6024,17 +6032,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b126ec36-858b-4388-80fe-e38a31718e8f"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "07f9b441-7084-47f5-8e42-523c076432d8"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "3f43bd35-5685-4e63-a14a-f1b7edb78a3d"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6044,19 +6058,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023844Z:07f9b441-7084-47f5-8e42-523c076432d8"
+ "WESTUS:20200826T114612Z:fd214ae8-89c1-46f2-80aa-e685a8a5eb82"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:38:43 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6065,20 +6079,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6088,17 +6102,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "80ab2839-0afd-4c07-8f3b-f913eb6e0b6f"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "af507182-35bc-4e78-9f03-6cced20c0f18"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "ad092c57-b74c-4724-a565-a85790c08af2"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6108,19 +6128,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023854Z:af507182-35bc-4e78-9f03-6cced20c0f18"
+ "WESTUS:20200826T114612Z:0213124a-4585-4f09-a71e-1411edea600d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:38:54 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6129,20 +6149,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6152,17 +6172,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d1aa61bc-9d5c-4f1c-b43c-885474641bc1"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b407b8c5-910a-4032-91c9-175ea8c1d02f"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "39b1c325-d52b-41b4-a096-73bbc3ff258c"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6172,19 +6198,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023904Z:b407b8c5-910a-4032-91c9-175ea8c1d02f"
+ "WESTUS:20200826T114612Z:b153600e-4672-41dd-87d6-4740e91e6ee0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:39:04 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6193,20 +6219,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6216,39 +6242,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ce0d6de3-62d9-4520-8f86-5a0d977ad540"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "79078700-a408-430f-ab6b-67e0db8636a6"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "d9126f7a-475c-4d45-bc0c-a63a6f405cdf"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023914Z:79078700-a408-430f-ab6b-67e0db8636a6"
+ "WESTUS:20200826T114612Z:0c1a3394-7d56-4280-9ebd-7210fbbd8cb0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:39:14 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6257,20 +6289,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6280,17 +6312,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0b3bdb11-3088-4988-9456-afc47f8b5f42"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "bfd816c3-522f-4eb0-9773-ae31bfb71cd0"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "512292dd-4562-4225-91a9-f02fcca9d772"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6300,19 +6338,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023924Z:bfd816c3-522f-4eb0-9773-ae31bfb71cd0"
+ "WESTUS:20200826T114612Z:c39b30c9-d3b6-4d32-b59a-1fdbade874e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:39:24 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6321,20 +6359,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6344,17 +6382,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2264ebbe-f1c0-4af2-8bf1-1b8dcf753adb"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4559c984-4df0-4e08-8e78-34f2cf53df73"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "10430525-ea15-4821-b41b-cd664534d81f"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6364,19 +6408,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023934Z:4559c984-4df0-4e08-8e78-34f2cf53df73"
+ "WESTUS:20200826T114612Z:bd32fd8a-cd5c-4cfe-89cf-b3d1c0c97b59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:39:34 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6385,20 +6429,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6408,17 +6452,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c9278153-9c77-4a08-9e56-6db401f3dae5"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "107090b4-bf28-46ef-850d-a8cefce1dc45"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "c1142924-b077-4806-a5c1-a8e4925203b4"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6428,19 +6478,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023944Z:107090b4-bf28-46ef-850d-a8cefce1dc45"
+ "WESTUS:20200826T114612Z:b0354622-392c-4aed-8497-2b4c6478e5f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:39:44 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6449,20 +6499,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6472,17 +6522,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d59cb86a-f01f-41f7-b603-0a26b8d930aa"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6d6ee817-d769-4568-851b-e2e885d84d70"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "6df3af0a-552e-4fd6-b3f1-263470aae115"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6492,19 +6548,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T023954Z:6d6ee817-d769-4568-851b-e2e885d84d70"
+ "WESTUS:20200826T114612Z:96f96a0f-26cc-4e11-824b-cf00f3c3d323"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:39:54 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6513,20 +6569,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6536,17 +6592,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "21d3bc6d-8923-424d-856a-d78953c1e34f"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "0a32b43d-91e5-42e0-858a-d653fa959818"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "417d5138-e805-4c34-88f7-6ea8e3544930"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6556,19 +6618,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024004Z:0a32b43d-91e5-42e0-858a-d653fa959818"
+ "WESTUS:20200826T114612Z:6112c2cb-9d62-4fef-be6b-eb1bf52b4af1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:40:04 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6577,20 +6639,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6600,17 +6662,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "54053f78-61b2-4403-a216-2382ab1942a9"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "98313fa2-d5b9-423b-97f0-c9ca1a5778b9"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "e209ece8-dfc7-4175-a996-45922ecfb09a"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6620,19 +6688,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024014Z:98313fa2-d5b9-423b-97f0-c9ca1a5778b9"
+ "WESTUS:20200826T114612Z:dbb1ea83-42b4-4094-b506-76471322d944"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:40:14 GMT"
+ "Wed, 26 Aug 2020 11:46:11 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6641,20 +6709,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6664,17 +6732,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5c7160dd-4924-423a-99bf-4a6cf6ac925d"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c9841751-4830-403e-87f5-a22c63adc959"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "c499c330-d556-4f80-b377-7c9294728a83"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6684,19 +6758,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024024Z:c9841751-4830-403e-87f5-a22c63adc959"
+ "WESTUS:20200826T114612Z:49cd4364-e03f-4e8c-b450-a4d2d515cf33"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:40:24 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6705,20 +6779,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6728,17 +6802,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "605a8e96-305e-4857-b2a1-ccfb6e7d9d35"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "d40690e8-ec9d-4fc5-8552-e0ad67e829e9"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "1f504817-35e4-45eb-857c-5e3bb77d8f3c"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6748,19 +6828,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11985"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024035Z:d40690e8-ec9d-4fc5-8552-e0ad67e829e9"
+ "WESTUS:20200826T114612Z:7e5b7576-8be1-4598-b17c-7623ed2f5a9a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:40:34 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6769,20 +6849,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6792,17 +6872,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ba6aa8ea-5aa9-4c05-bedb-e90e164c3094"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ce2618d1-1fe0-4c01-b6f5-bdc071e6d258"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "0b080527-c0e2-4e39-b774-16038ea4dcff"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6812,19 +6898,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024045Z:ce2618d1-1fe0-4c01-b6f5-bdc071e6d258"
+ "WESTUS:20200826T114612Z:d7f63d6a-0d35-4cbd-8eed-2012759ed94d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:40:44 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6833,20 +6919,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6856,17 +6942,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b8c27e49-410d-4a13-89d9-5708cc92b058"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "dfb15d9e-bf6f-402f-99ad-cbb3292c1241"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "e9b384fc-821d-4440-8d00-83f4b31b7195"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6876,19 +6968,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024055Z:dfb15d9e-bf6f-402f-99ad-cbb3292c1241"
+ "WESTUS:20200826T114613Z:d5f3cd15-5696-4207-b91c-417390ff4dcb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:40:55 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6897,20 +6989,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6920,17 +7012,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "15101f80-0be1-4cc6-833d-1b14002f099d"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "0d5c9d7b-02c9-4499-b230-40bac6680812"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "5b1ec036-5103-4cf1-a190-1194f105aa8c"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6940,19 +7038,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11982"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024105Z:0d5c9d7b-02c9-4499-b230-40bac6680812"
+ "WESTUS:20200826T114613Z:2b60c8af-cf04-4880-bd1c-ed93f8ea3d70"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:41:05 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6961,20 +7059,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -6984,17 +7082,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "341a6afa-2383-4948-ab33-bb3a3272d86a"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "cbb9fc0b-fc9a-4c2b-bff3-3e1d2a772e0e"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "d17b7f49-13f5-4de5-ac15-789d23e4eeed"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7004,19 +7108,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024115Z:cbb9fc0b-fc9a-4c2b-bff3-3e1d2a772e0e"
+ "WESTUS:20200826T114613Z:b40a102d-ce90-471d-9cfb-dfb1091a2aea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:41:15 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7025,20 +7129,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7048,17 +7152,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "1d4e773e-af33-4af3-9a36-dc7ac60ebb3b"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7a90dc2c-08b2-4547-8779-869d93647a0f"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "b01045c6-d558-427c-92cf-42e7d3c7867f"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7068,19 +7178,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024125Z:7a90dc2c-08b2-4547-8779-869d93647a0f"
+ "WESTUS:20200826T114613Z:03215a7e-a588-459b-aa4f-4cb191dc1ff5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:41:25 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7089,20 +7199,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7112,17 +7222,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "cb244857-10a2-4091-be37-40478f75ad7b"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c26c5498-79f5-4c3c-a225-8b6fa4a7f756"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "8effe680-c10a-408f-9e4b-6f9fee99def7"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7132,19 +7248,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024135Z:c26c5498-79f5-4c3c-a225-8b6fa4a7f756"
+ "WESTUS:20200826T114613Z:d969979e-63a6-4305-90e3-1bc3a3fdb4bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:41:35 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7153,20 +7269,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7176,17 +7292,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a819bc0d-fac3-4d8d-891a-99dbcf49b85d"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "96917b7c-5893-493d-a7cb-0ae6f17262c8"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "3958940d-46f6-4950-85b4-8eab27bb2cd0"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7196,19 +7318,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024145Z:96917b7c-5893-493d-a7cb-0ae6f17262c8"
+ "WESTUS:20200826T114613Z:710cce04-5d72-49b5-a81e-85fdf52de242"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:41:45 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7217,20 +7339,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7240,17 +7362,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "81b87a3f-4802-4dd0-bf36-c5492574fff0"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "85876ef8-c565-4607-bf4f-44e4c53eac30"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "62b9cd48-dbf0-455c-86a9-0e07a9c57f83"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7260,19 +7388,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024155Z:85876ef8-c565-4607-bf4f-44e4c53eac30"
+ "WESTUS:20200826T114613Z:fa82d95b-d1af-49d9-99ab-a892fdeae3b5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:41:55 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7281,20 +7409,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7304,17 +7432,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ae65dea6-726d-466f-9695-10c01f23dac3"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "8d218bdf-85c2-4c5a-b5ea-4c41f2d0a45c"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "772fc4ea-5ae7-461e-9fa2-0ca3a4f43f45"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7324,19 +7458,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "11976"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024205Z:8d218bdf-85c2-4c5a-b5ea-4c41f2d0a45c"
+ "WESTUS:20200826T114613Z:8aae8dd6-926c-4174-a4e7-8e6cf48a1633"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:42:05 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7345,20 +7479,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7368,17 +7502,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "eb187344-f2f2-4d28-b6ae-f66abf262f03"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "3b9d0621-bbf1-435d-bbfa-781dca0bd18f"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "9cbed5e4-7cc9-4947-8e87-5fa129e6f2ac"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7388,19 +7528,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11975"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024215Z:3b9d0621-bbf1-435d-bbfa-781dca0bd18f"
+ "WESTUS:20200826T114613Z:23dee644-a4dd-4ed2-90cd-631355d7dca5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:42:15 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7409,20 +7549,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7432,17 +7572,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b83ab033-642a-4197-8f6f-59c756d11c15"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "aeb359e6-fa2e-479e-872d-615e83a47f57"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "f34bb9d3-bf9e-4457-84a8-bc9310da3a54"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7452,19 +7598,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11974"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024226Z:aeb359e6-fa2e-479e-872d-615e83a47f57"
+ "WESTUS:20200826T114613Z:aab1f017-363a-4c5b-92c3-aacc74294481"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:42:25 GMT"
+ "Wed, 26 Aug 2020 11:46:12 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7473,20 +7619,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE1NThhYTMyLTRkNDctNDU5Ni1iMTRlLTVhYzA2ODlhNTU0MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7496,17 +7642,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/1558aa32-4d47-4596-b14e-5ac0689a5541?api-version=2019-08-01"
],
"x-ms-request-id": [
- "3a371f21-a68f-4d39-ab34-b3ee50941cf8"
+ "1558aa32-4d47-4596-b14e-5ac0689a5541"
],
"x-ms-correlation-request-id": [
- "0b086a52-5526-4911-94a4-f11dcb74fa69"
+ "1435e503-434b-4fdf-a26f-2ed5a65148b6"
],
"x-ms-arm-service-request-id": [
- "a74f06a8-9c19-4de7-ad9a-9473daf8c359"
+ "60dd4da0-cb98-4629-9426-7aad3ccfece6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7516,19 +7662,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11973"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024236Z:0b086a52-5526-4911-94a4-f11dcb74fa69"
+ "WESTUS:20200826T114613Z:1d8b0f5b-0467-4e6e-87a3-82ec4d60a6fa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:42:35 GMT"
+ "Wed, 26 Aug 2020 11:46:13 GMT"
],
"Content-Length": [
- "30"
+ "191"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7537,20 +7683,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"vpnServerConfigurationResourceIds\": [\r\n \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "659d4247-9fee-4802-a5b6-952b896539e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7560,17 +7712,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "cc71f1ae-1154-4970-9533-6882393f3ec6"
+ "1eb0e013-f622-416f-b482-6a591a4de5af"
],
"x-ms-correlation-request-id": [
- "3b3aac41-97da-4a15-8d32-07f2d01176d7"
+ "eaa83c19-da12-476c-967a-01c84850e73e"
],
"x-ms-arm-service-request-id": [
- "b5c3d34d-2eb5-496b-83f5-f5ae452b4dde"
+ "c7e51c1f-0d78-4743-9f56-5165072ae780"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7580,19 +7729,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024246Z:3b3aac41-97da-4a15-8d32-07f2d01176d7"
+ "WESTUS:20200826T114614Z:eaa83c19-da12-476c-967a-01c84850e73e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:42:45 GMT"
+ "Wed, 26 Aug 2020 11:46:14 GMT"
],
"Content-Length": [
- "30"
+ "2799"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7601,20 +7750,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"ffb88bbd-5be6-4479-b8e4-d73994aef4f9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "293c40a1-e53a-4d1f-bef7-157476a23c1f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7624,17 +7779,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "cab71d5e-7f76-467b-9831-8c1be8eb5e31"
+ "7f37613a-1a8e-4b55-8dd7-3a10e494afae"
],
"x-ms-correlation-request-id": [
- "bb51d45c-d540-45cc-b838-034148018892"
+ "0825067d-61e4-4906-a914-d47657148d94"
],
"x-ms-arm-service-request-id": [
- "cfaa4c96-2841-453a-afb1-5f4e770454ac"
+ "d6a7e007-2a7a-4e2b-9ecc-ff0e5346e602"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7644,19 +7796,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024256Z:bb51d45c-d540-45cc-b838-034148018892"
+ "WESTUS:20200826T114642Z:0825067d-61e4-4906-a914-d47657148d94"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:42:55 GMT"
+ "Wed, 26 Aug 2020 11:46:41 GMT"
],
"Content-Length": [
- "30"
+ "5117"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7665,20 +7817,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"ffb88bbd-5be6-4479-b8e4-d73994aef4f9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"24a513ca-2dad-4371-884d-ad78d311badd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9c9bfc7-3895-4135-8498-954dcb5e72d4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7688,17 +7846,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "a2588a24-91cf-44f5-9b9a-927d2e353308"
+ "604c62cd-0512-46f7-a038-29841d22e611"
],
"x-ms-correlation-request-id": [
- "2dff8e8f-2987-452f-991a-ea25a920e4d0"
+ "d4aefe12-69a8-463e-8831-7aaa7ed05a40"
],
"x-ms-arm-service-request-id": [
- "ea911cab-f85a-47b3-91c4-d4ee3167dffd"
+ "8ce87ff6-e933-4371-9556-76a806d72f1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7708,19 +7863,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024306Z:2dff8e8f-2987-452f-991a-ea25a920e4d0"
+ "WESTUS:20200826T120415Z:d4aefe12-69a8-463e-8831-7aaa7ed05a40"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:43:06 GMT"
+ "Wed, 26 Aug 2020 12:04:15 GMT"
],
"Content-Length": [
- "30"
+ "2799"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7729,20 +7884,29 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1604\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"etag\": \"W/\\\"ffb88bbd-5be6-4479-b8e4-d73994aef4f9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/generatevpnprofile?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzVnBuR2F0ZXdheXMvcHMzNjQ5L2dlbmVyYXRldnBucHJvZmlsZT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"authenticationMethod\": \"EAPTLS\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8977ef1a-f5cd-4b94-94eb-fa799f44f6ef"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "40"
]
},
"ResponseHeaders": {
@@ -7752,17 +7916,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "184fb1b0-5499-4747-81d3-22c8656eb5e3"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ff1cf9ab-72c6-4725-ab6f-38fb1d09f156"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "c77889bc-6919-4d23-b03b-ec1bf1f95fd6"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7771,20 +7941,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024316Z:ff1cf9ab-72c6-4725-ab6f-38fb1d09f156"
+ "WESTUS:20200826T114615Z:d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:43:16 GMT"
+ "Wed, 26 Aug 2020 11:46:14 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7793,20 +7963,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7816,17 +7986,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "131f7402-d1b4-4c33-8b59-bf5a9525298c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "34124459-342d-441f-93e7-f4b57113d22d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "ca2c16cb-fc55-4989-a7d3-5ea39723632d"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7836,19 +8012,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024326Z:34124459-342d-441f-93e7-f4b57113d22d"
+ "WESTUS:20200826T114615Z:5a0caa8c-f2e6-47f1-8385-89e8fad3aa35"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:43:26 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7857,20 +8033,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7880,17 +8056,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2d08623d-568f-4434-ad49-c3ef7197f5a7"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "8071c1d9-1b32-43d0-bba1-4b17469a290e"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "2a0ec889-499b-478f-8851-6f91773fcd40"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7900,19 +8082,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024336Z:8071c1d9-1b32-43d0-bba1-4b17469a290e"
+ "WESTUS:20200826T114615Z:0f19deb9-7e3b-4ec0-a6f0-695a45e3066f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:43:36 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7921,20 +8103,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -7944,17 +8126,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5f7ca15e-115b-4324-8fe2-f0305212fef8"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c2054b62-4dc0-425e-9d4b-289d69ee53e7"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "635f522e-bbc1-4d5a-945c-d384a85e87d5"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7964,19 +8152,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024346Z:c2054b62-4dc0-425e-9d4b-289d69ee53e7"
+ "WESTUS:20200826T114615Z:a4850c17-5c0e-4169-9028-246dd6786895"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:43:46 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7985,20 +8173,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8008,17 +8196,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "1d9390e1-0973-46c9-8294-878b38ac6ead"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ca012470-3241-415f-ba1b-0091fdf0e492"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7a9b45a3-b4af-41f8-a58a-619162f7e036"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8028,19 +8222,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024356Z:ca012470-3241-415f-ba1b-0091fdf0e492"
+ "WESTUS:20200826T114615Z:30f1234c-151b-4a61-a1e0-5452f2d67395"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:43:56 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8049,20 +8243,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8072,17 +8266,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c00e2049-1682-49a5-818a-83bf06908efa"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "861ac09a-137d-48a4-aa31-c287d9e78691"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "c62b9b02-bdf2-41ad-8f7f-aa2d2c256c4e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8092,19 +8292,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024406Z:861ac09a-137d-48a4-aa31-c287d9e78691"
+ "WESTUS:20200826T114615Z:27866be4-af0b-4779-9ef7-f69407123940"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:44:06 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8113,20 +8313,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8136,17 +8336,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "7187863e-73e7-4b1c-846f-67c86e3f5d2c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5faf0158-171c-40fa-968e-203e2034e64e"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "cc404f6f-2974-4228-8cc7-b914b0a822cd"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8156,19 +8362,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024416Z:5faf0158-171c-40fa-968e-203e2034e64e"
+ "WESTUS:20200826T114615Z:74deb04d-f5a4-4bdf-b834-540c121d238a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:44:16 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8177,20 +8383,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8200,17 +8406,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "6ed464b0-f028-4cc3-8899-33ae3eb51f7e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5b040ebd-09f0-4b80-a650-6ef9e4138148"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "003a3878-09f8-4eb4-854a-d35ff76d8f74"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8220,19 +8432,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024426Z:5b040ebd-09f0-4b80-a650-6ef9e4138148"
+ "WESTUS:20200826T114615Z:b6352e87-4cbe-4b4a-96d4-53a02bf4c53c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:44:26 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8241,20 +8453,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8264,17 +8476,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a650a827-732c-4776-a4e3-1966d9597828"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "073ca805-0008-46d2-be02-2450f4884f40"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "ac36e76c-ff45-47cc-8e1a-09223f485cd2"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8284,19 +8502,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024437Z:073ca805-0008-46d2-be02-2450f4884f40"
+ "WESTUS:20200826T114615Z:a7ba85a1-de7e-40ee-9459-f035c5f39428"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:44:36 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8305,20 +8523,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8328,17 +8546,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "91ad6a62-d1c6-46c0-aa21-82e8325c0c63"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6a5ee059-b46d-4bc5-af10-44e0a29ac322"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "4317f513-2230-451c-a0e9-376bf775c06d"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8348,19 +8572,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024447Z:6a5ee059-b46d-4bc5-af10-44e0a29ac322"
+ "WESTUS:20200826T114615Z:8abfa727-cdd1-444e-89df-d3a983e46e79"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:44:47 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8369,20 +8593,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8392,39 +8616,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "22962e56-c72f-400a-ae11-ea6ffb5aad6c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "17ec8a3f-7ad2-465e-b611-12f89c444d4d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "eebedc04-9f08-44ca-a800-4470559ba300"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024457Z:17ec8a3f-7ad2-465e-b611-12f89c444d4d"
+ "WESTUS:20200826T114615Z:d00fbda2-dba3-4464-9e79-4d02255866a9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:44:57 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8433,20 +8663,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8456,17 +8686,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "075a5dfc-8938-402e-9c6d-cb0ae729b2c6"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ede996b6-8505-44b2-aa4f-17c6a4c79c8c"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "9f8b41e9-ee6a-4bfd-add7-016d01ffcbfc"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8476,19 +8712,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024507Z:ede996b6-8505-44b2-aa4f-17c6a4c79c8c"
+ "WESTUS:20200826T114615Z:279edcd2-5162-4e61-a0db-edaceeb4d9b7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:45:07 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8497,20 +8733,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8520,17 +8756,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9de9e9cd-053c-48f1-b602-0a1da9ce8c4a"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a316ab3c-933c-4b09-afb3-b3d866a7ce47"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "fdcfec6c-7893-4636-9fa1-1dcb123f8d86"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8540,19 +8782,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024517Z:a316ab3c-933c-4b09-afb3-b3d866a7ce47"
+ "WESTUS:20200826T114615Z:7d4eb1c2-6800-44f6-b545-4a0fcdf3007c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:45:17 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8561,20 +8803,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8584,17 +8826,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2c3e659c-546b-474a-bcab-1731fea5e015"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "36bfd2f7-d979-4ce6-9a84-8c7e006ab7f1"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "1f3e3f8e-d2a2-4f1d-bb45-eb1d332d125b"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8604,19 +8852,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024527Z:36bfd2f7-d979-4ce6-9a84-8c7e006ab7f1"
+ "WESTUS:20200826T114615Z:88ca9e3e-5611-4397-bced-903ce9fbc9bb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:45:27 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8625,20 +8873,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8648,17 +8896,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "98973bb7-2d9e-4217-902b-2fc6a1c9038b"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9f724805-2b65-4992-b227-fb1037af3991"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "6d8c2ed5-df82-4420-8a14-1572d647d26b"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8668,19 +8922,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
+ "11985"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024537Z:9f724805-2b65-4992-b227-fb1037af3991"
+ "WESTUS:20200826T114616Z:d1a40a0d-fc3f-4e46-b31f-3d547bbf1798"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:45:37 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8689,20 +8943,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8712,17 +8966,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b4833afc-3b61-44b9-a505-6bc2c006f660"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "995c2a12-e8d5-4846-bd4d-f05c66b9960a"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d77ffc18-94c3-4e97-ad13-2c3d2129ce5e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8732,19 +8992,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
+ "11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024547Z:995c2a12-e8d5-4846-bd4d-f05c66b9960a"
+ "WESTUS:20200826T114616Z:e93692de-8706-4532-bdc6-4b18c262ad47"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:45:47 GMT"
+ "Wed, 26 Aug 2020 11:46:15 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8753,20 +9013,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8776,17 +9036,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "3a3ba7b0-d5f5-4036-b8c1-642bf53189c8"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "54d182e7-f47e-4782-8835-113693ea89a0"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7bcb0771-cb9a-4368-aad1-eb5a15a20f04"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8796,19 +9062,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
+ "11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024557Z:54d182e7-f47e-4782-8835-113693ea89a0"
+ "WESTUS:20200826T114616Z:b72e5b68-4bef-4ce2-bc6d-4baa14bc9bf7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:45:57 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8817,20 +9083,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8840,17 +9106,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "529594fb-011c-4d8f-8629-8228068c701b"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f10fcae1-ee5d-4a64-8786-25ade11ef0a2"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "4ca0bb84-7305-4590-b195-f87d4888d444"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8860,19 +9132,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
+ "11982"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024607Z:f10fcae1-ee5d-4a64-8786-25ade11ef0a2"
+ "WESTUS:20200826T114616Z:da5f7a9c-af0e-44b8-bb69-1535e1e29a91"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:46:07 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8881,20 +9153,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8904,17 +9176,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f6f68c9a-1d3a-4fe5-bf46-a68aceb3556c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b6b4d7b-3852-46ff-8b15-9e675813c8b5"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "b753202f-2ac9-43b5-89a3-f17c65058809"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8924,19 +9202,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
+ "11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024617Z:2b6b4d7b-3852-46ff-8b15-9e675813c8b5"
+ "WESTUS:20200826T114616Z:25df93ca-4629-430c-bcd3-e8cd4c53d07c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:46:16 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8945,20 +9223,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -8968,17 +9246,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "90c43bb4-f9a1-4e2c-b976-3b490f54ee63"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c8ab3d36-d711-4114-bec0-85e80534d8bc"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "a8f79a68-75e9-432f-b9bc-0fb543dcacd9"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8988,19 +9272,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
+ "11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024628Z:c8ab3d36-d711-4114-bec0-85e80534d8bc"
+ "WESTUS:20200826T114616Z:6230d448-f9ac-4114-b7f6-978e1576cb73"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:46:27 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9009,20 +9293,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9032,17 +9316,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "eab7fab2-6a29-48b0-a81a-1e30646ecdc7"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7e3575b3-e764-4b34-bc2e-c0e4a7ead6af"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d6a950a4-f6ef-41c3-aa68-56f02d7816ec"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9052,19 +9342,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
+ "11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024638Z:7e3575b3-e764-4b34-bc2e-c0e4a7ead6af"
+ "WESTUS:20200826T114616Z:1109f226-18d3-43a6-9ee6-ad46790b254e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:46:37 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9073,20 +9363,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9096,17 +9386,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "76d76612-5635-4e21-8dc3-5d60bf7774c2"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "74db1f2e-d77b-4fda-8ac8-43ba9826115a"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "0be858b4-907f-4774-aea2-d567dd380e43"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9116,19 +9412,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
+ "11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024648Z:74db1f2e-d77b-4fda-8ac8-43ba9826115a"
+ "WESTUS:20200826T114616Z:7c57cf6d-d0b1-46ab-a6aa-4bb6e9bbde8d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:46:47 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9137,20 +9433,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9160,17 +9456,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ab6e891c-a712-4872-a3a3-a1a0bb22391d"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "22eac70d-cf78-4c68-9ce3-c745a48f0a72"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "0d4e3699-e132-4071-9990-1865b77fe355"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9180,19 +9482,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
+ "11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024658Z:22eac70d-cf78-4c68-9ce3-c745a48f0a72"
+ "WESTUS:20200826T114616Z:6ae1873f-8911-4178-8edf-fa5ed33a540a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:46:57 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9201,20 +9503,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9224,17 +9526,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a037d2e1-f674-471d-a1b8-940bf4942cb9"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "97b42244-1964-44c4-b300-124992b7d70c"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "b24a7a8a-76dd-4442-b692-7bb96bc731ac"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9244,19 +9552,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
+ "11976"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024708Z:97b42244-1964-44c4-b300-124992b7d70c"
+ "WESTUS:20200826T114616Z:4810ea3d-dd62-4b05-a8c4-ee8294ae3399"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:47:07 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9265,20 +9573,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9288,17 +9596,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "dc207313-6997-409e-b2f7-a5e88e904954"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4dc77f23-d8a5-449e-b5e4-670c813d1d2a"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "e5bca7af-4ab0-41d5-b273-655796b5b1be"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9308,19 +9622,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
+ "11975"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024718Z:4dc77f23-d8a5-449e-b5e4-670c813d1d2a"
+ "WESTUS:20200826T114616Z:bdd77b75-b366-437a-b73d-5a0516dad908"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:47:17 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9329,20 +9643,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9352,17 +9666,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "8d4e4541-7876-46cb-a9db-5b6ccaec2883"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "de9abe01-dab1-45a2-bec2-20113a142f0b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "6e44b9e3-56e5-47a8-91d0-0dc7586f5c5b"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9372,19 +9692,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
+ "11974"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024728Z:de9abe01-dab1-45a2-bec2-20113a142f0b"
+ "WESTUS:20200826T114616Z:cd047546-dfa2-4d2a-be71-b0233fa76891"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:47:28 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9393,20 +9713,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9416,17 +9736,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2249f2ca-00e5-4283-bc23-f33855020490"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "bfbd431c-6163-402b-80d0-f1714d9b99f1"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "31d12757-668b-4c3a-93aa-1b52e5bc50a2"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9436,19 +9762,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
+ "11973"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024738Z:bfbd431c-6163-402b-80d0-f1714d9b99f1"
+ "WESTUS:20200826T114616Z:f74a5ad5-0535-4ad6-8c0b-d9c6014b9bea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:47:38 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9457,20 +9783,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9480,17 +9806,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4d36fd64-2303-4614-b780-f052c38cb4c7"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b02019e5-5322-4944-8dc0-b914010f5446"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "9cf62287-fc2a-4f2b-8a51-09639c5bed7f"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9500,19 +9832,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
+ "11972"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024748Z:b02019e5-5322-4944-8dc0-b914010f5446"
+ "WESTUS:20200826T114616Z:1649f6f3-ff42-4459-8b8b-1e79ae447058"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:47:48 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9521,20 +9853,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9544,17 +9876,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "37ff3281-f4b2-4f3f-8467-9d1b0c993fe9"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "087af945-a91c-42b7-b815-776b760f7de9"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "95c6da26-944f-4dc1-b40f-edb9272edd8d"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9564,19 +9902,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
+ "11971"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024758Z:087af945-a91c-42b7-b815-776b760f7de9"
+ "WESTUS:20200826T114616Z:9e415a7f-1690-4e5a-9a37-f19319775e0c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:47:58 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9585,20 +9923,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9608,17 +9946,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c6b8d6d5-b265-4878-90e4-5d653b4c2921"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "fa96b5ba-0f9a-4269-b9a1-e372e5143511"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f9d58406-fe0d-4380-a283-f95711872a73"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9628,19 +9972,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
+ "11970"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024808Z:fa96b5ba-0f9a-4269-b9a1-e372e5143511"
+ "WESTUS:20200826T114617Z:219d1ab0-271d-4e1b-aae8-a78d9ecc88d1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:48:08 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9649,20 +9993,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9672,17 +10016,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "bd4157f2-2489-4a1f-97be-5b63aaaeeb60"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "24cb7e28-16d3-4e9a-acea-5fc0d431d654"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "ddc09e54-f01e-4a0f-94bd-d5ddb68c4274"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9692,19 +10042,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
+ "11969"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024818Z:24cb7e28-16d3-4e9a-acea-5fc0d431d654"
+ "WESTUS:20200826T114617Z:1680e6b8-931a-42cf-8e51-3b3f06ef8c5a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:48:18 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9713,20 +10063,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9736,17 +10086,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "cf00f146-ae16-475d-8f86-6bc639bb5325"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "38bf1b0f-8a43-476e-b896-264b0528a9ef"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "b4d4869b-2f43-45e5-98d0-8ae8ec67d524"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9756,19 +10112,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
+ "11968"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024828Z:38bf1b0f-8a43-476e-b896-264b0528a9ef"
+ "WESTUS:20200826T114617Z:6f0ef6c1-b70e-4d17-b424-80bfa9f31869"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:48:27 GMT"
+ "Wed, 26 Aug 2020 11:46:16 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9777,20 +10133,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9800,17 +10156,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "047ee7e3-1cf0-45ad-b4c3-5c5a84a76494"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c3463622-7c8e-492c-8f14-15aef1049d6b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "c481b9e8-39f8-40fc-a9c1-04d5843fbefa"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9820,19 +10182,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11909"
+ "11967"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024839Z:c3463622-7c8e-492c-8f14-15aef1049d6b"
+ "WESTUS:20200826T114617Z:5acc29f3-fc01-450c-8209-a1809bcd1b8f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:48:38 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9841,20 +10203,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9864,17 +10226,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a514e37e-5abd-492d-b453-d72263d75ed7"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "723c4ec6-2b64-4898-9005-2c962454945c"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f1932585-dc00-4e89-b6a8-f6b1661638e0"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9884,19 +10252,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
+ "11966"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024849Z:723c4ec6-2b64-4898-9005-2c962454945c"
+ "WESTUS:20200826T114617Z:5d009831-f10f-4621-b01d-1b875c5370c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:48:48 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9905,20 +10273,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9928,17 +10296,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a36c2d0a-9f35-4d56-8563-0ad77fd28b9b"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5041b34b-eab5-44fd-8c26-3bf47b0093bc"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f20f431d-c2a1-41ae-af38-664b6c2c47de"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9948,19 +10322,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11907"
+ "11965"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024859Z:5041b34b-eab5-44fd-8c26-3bf47b0093bc"
+ "WESTUS:20200826T114617Z:ec6231e6-7e5f-43a9-99ea-665091a4cf1f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:48:58 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9969,20 +10343,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -9992,17 +10366,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2dad753c-2b15-4354-bc81-7307647aa724"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "d42885aa-a863-403f-9725-c865d41e31da"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f451b79f-f456-47d5-bed9-130cabdb45e5"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10012,19 +10392,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
+ "11964"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024909Z:d42885aa-a863-403f-9725-c865d41e31da"
+ "WESTUS:20200826T114617Z:f570607d-885e-48e4-936e-8dba8168a27c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:49:08 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10033,20 +10413,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10056,17 +10436,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "7b818c12-1b93-4e01-8c46-1dadf242fd6f"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6db69810-bfb1-4aa2-a53d-a34e146fea78"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "14c592fd-6d23-40d0-a686-1f658b41db16"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10076,19 +10462,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
+ "11963"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024919Z:6db69810-bfb1-4aa2-a53d-a34e146fea78"
+ "WESTUS:20200826T114617Z:010a8fc0-c737-4259-b774-48704222eb57"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:49:18 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10097,20 +10483,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10120,17 +10506,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "58d6e949-32a0-45e7-8e68-3818e945a231"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b4c02c66-b0f0-4cad-8ca3-ce17c0a7440b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d5d4457a-e3bc-4607-987d-038661b92b03"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10140,19 +10532,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
+ "11962"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024929Z:b4c02c66-b0f0-4cad-8ca3-ce17c0a7440b"
+ "WESTUS:20200826T114617Z:78f82279-a7b1-49d6-91db-de55ea193fcf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:49:28 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10161,20 +10553,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10184,17 +10576,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c64c9bf9-617e-425b-8434-99589c21ce3f"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c6bd9c21-c11c-4693-8dca-d33d59423aee"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "245eae40-096d-484c-bddd-f234e6758eda"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10204,19 +10602,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11903"
+ "11961"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024939Z:c6bd9c21-c11c-4693-8dca-d33d59423aee"
+ "WESTUS:20200826T114617Z:a2cf441c-eafe-41be-bc88-8131a6ecf024"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:49:38 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10225,20 +10623,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10248,17 +10646,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d9d6e43e-1123-4956-bc1f-43254ec77098"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ae130c11-ee46-43a2-bf97-7f9c442c9c80"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f47c1c41-4af6-49e6-930b-0c4b3a2d73ef"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10268,19 +10672,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
+ "11960"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024949Z:ae130c11-ee46-43a2-bf97-7f9c442c9c80"
+ "WESTUS:20200826T114617Z:5682aa30-1156-4090-9ca7-5863c904ad87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:49:48 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10289,20 +10693,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10312,17 +10716,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "de38635c-944f-4ed1-abe8-71c68d1aeebf"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f10e7f3b-6bda-43fc-9433-8be132d49032"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "0e235c2a-5b62-46b7-94e4-cad82fc641f1"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10332,19 +10742,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11901"
+ "11959"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T024959Z:f10e7f3b-6bda-43fc-9433-8be132d49032"
+ "WESTUS:20200826T114617Z:0cd62baf-7a2a-4f0f-b41d-9de4b667f9f6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:49:58 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10353,20 +10763,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10376,17 +10786,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "65f63119-cc4a-4c50-8910-6b6c805b8c0a"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a7151ac3-8325-411a-871a-5c6c9099b9d8"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "29b95298-8031-47bf-823e-2d03f0798277"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10396,19 +10812,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
+ "11958"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025009Z:a7151ac3-8325-411a-871a-5c6c9099b9d8"
+ "WESTUS:20200826T114617Z:28b07dd2-ac9d-4817-92f1-6b134620caee"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:50:08 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10417,20 +10833,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10440,17 +10856,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b6ee3b51-9f6e-4a02-91f4-5f9113d40114"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7b24cf4d-e656-43e6-bcc0-5e9d2bf57667"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "efd29796-9b63-403b-92e6-62b641298046"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10460,19 +10882,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11899"
+ "11957"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025019Z:7b24cf4d-e656-43e6-bcc0-5e9d2bf57667"
+ "WESTUS:20200826T114617Z:cb202238-1632-4984-aa54-e871b1deb133"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:50:19 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10481,20 +10903,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10504,17 +10926,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ff58efed-f76c-44ec-8527-fdb99c7116f0"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6bb5d95d-2efb-4393-b74c-e492178f7168"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "85a24bfd-1ff1-44c1-abbc-42615f079331"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10524,19 +10952,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11898"
+ "11956"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025029Z:6bb5d95d-2efb-4393-b74c-e492178f7168"
+ "WESTUS:20200826T114617Z:b7b09283-79f4-4c18-ae65-cd57d517fc57"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:50:29 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10545,20 +10973,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10568,39 +10996,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "1f74ab88-d0e2-4c02-90fb-c958062c0163"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b3f90688-5e61-485e-af91-926f2de977b3"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "cb376ca5-5e7b-4dd2-bbb3-e36dcf8c1618"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11897"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025039Z:b3f90688-5e61-485e-af91-926f2de977b3"
+ "WESTUS:20200826T114617Z:68d8db30-88ea-4163-9446-dc504259107f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:50:39 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10609,20 +11043,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10632,17 +11066,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "1ca3d377-0d37-447c-bd25-bae707379495"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "8a298bdf-0be7-4e5f-90e6-b3215910c453"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "43d873a5-d45f-45e5-a0ae-8c5ad3373d0b"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10652,19 +11092,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11896"
+ "11954"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025050Z:8a298bdf-0be7-4e5f-90e6-b3215910c453"
+ "WESTUS:20200826T114618Z:6bbca111-8a17-4bfb-be74-516a372d0e1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:50:49 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10673,20 +11113,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10696,17 +11136,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2b6a955e-c9d0-4019-9d63-ed22048e2fc1"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "64faf60a-c73b-4be8-bd52-aa7b3b409ebe"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "cbc66039-e81d-458f-a363-2491cfc05a76"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10716,19 +11162,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11895"
+ "11953"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025100Z:64faf60a-c73b-4be8-bd52-aa7b3b409ebe"
+ "WESTUS:20200826T114618Z:5bdb3ca0-0ff3-442f-ba51-c61b3daa7ab5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:50:59 GMT"
+ "Wed, 26 Aug 2020 11:46:17 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10737,20 +11183,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10760,17 +11206,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0c87b250-b6c3-4c90-b76a-fc4880810195"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2e99c707-f898-4935-ac77-bb9fe54012b5"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "192b261e-6ef0-4106-9d86-e9ca265c90f5"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10780,19 +11232,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11894"
+ "11952"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025110Z:2e99c707-f898-4935-ac77-bb9fe54012b5"
+ "WESTUS:20200826T114618Z:f8959dc7-f732-4ef1-bc8d-a94a69417b73"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:51:09 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10801,20 +11253,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10824,17 +11276,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "01b14cf7-b855-455f-90cc-5fe98d94af48"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9db5b758-fb00-4c5b-9ddc-843b751d6785"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7f8c69d1-5789-4e68-86e2-fa5fc8c142b1"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10844,19 +11302,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11893"
+ "11951"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025120Z:9db5b758-fb00-4c5b-9ddc-843b751d6785"
+ "WESTUS:20200826T114618Z:42df8699-9bc6-4332-970a-bb6bf04a5fe5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:51:19 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10865,20 +11323,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10888,17 +11346,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ae2e48d5-ff05-43d5-a1ba-fee605fe3eac"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "66474dd0-15bf-40f4-ba7c-031f6113580d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "577a1b1b-e365-473b-8136-70d557e4c59e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10908,19 +11372,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11892"
+ "11950"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025130Z:66474dd0-15bf-40f4-ba7c-031f6113580d"
+ "WESTUS:20200826T114618Z:49f10da4-b33a-41ab-ac3c-049ae5206002"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:51:29 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10929,20 +11393,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -10952,17 +11416,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ca605c39-f047-4e81-b1c2-b39919cb671e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "d5778d82-cbef-40b9-91e7-49f3599afe2b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "a74dc443-d361-4ba4-87bd-2fa271128631"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10972,19 +11442,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11891"
+ "11949"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025140Z:d5778d82-cbef-40b9-91e7-49f3599afe2b"
+ "WESTUS:20200826T114618Z:afc54c18-fa7f-437d-8538-a873297d1d36"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:51:39 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10993,20 +11463,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11016,17 +11486,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ecb95e04-7f9d-42ab-a5ef-6e7d284100f3"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "bbf6d890-daa0-43bb-bcfe-a2ab15110a4b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "60e90149-43f1-4b11-8227-ed62b7db93ca"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11036,19 +11512,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11890"
+ "11948"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025150Z:bbf6d890-daa0-43bb-bcfe-a2ab15110a4b"
+ "WESTUS:20200826T114618Z:6a554312-ebf7-4054-9e9c-f5f16cbd89d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:51:49 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11057,20 +11533,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11080,17 +11556,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "16542293-3800-4703-bceb-4b7a2bd88f17"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "85505883-7936-4e19-9366-b2ad470909e6"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "2359db0c-2cc9-4ce7-8437-46bfd8585d1c"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11100,19 +11582,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11889"
+ "11947"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025200Z:85505883-7936-4e19-9366-b2ad470909e6"
+ "WESTUS:20200826T114618Z:454d2be7-1d3b-47b8-ab98-7f6222996cd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:51:59 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11121,20 +11603,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11144,17 +11626,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ed7f1cc0-a1a8-4fc9-b9bc-112c0cc4a7c8"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "71302af1-29e5-4ad7-8623-af3354365042"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7d5e1c0a-e5c8-44b1-9767-f648eb8448ef"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11164,19 +11652,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
+ "11946"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025210Z:71302af1-29e5-4ad7-8623-af3354365042"
+ "WESTUS:20200826T114618Z:d143ef44-0d6a-46ac-8454-24a36d180b28"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:52:09 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11185,20 +11673,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11208,17 +11696,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a31faf2e-1990-4a8d-9fbe-35f22e36fb4e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5df8057b-901b-460c-bdeb-5eee0f0ff4bc"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "eb1716f7-2006-46d4-a0cd-7f12164597f6"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11228,19 +11722,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11887"
+ "11945"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025220Z:5df8057b-901b-460c-bdeb-5eee0f0ff4bc"
+ "WESTUS:20200826T114618Z:d06f467d-01bb-4f53-a7f3-eee5cdfac89a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:52:20 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11249,20 +11743,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11272,17 +11766,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "8fb5351d-9ff0-453b-9909-544d5a6ab7ab"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e76de954-a2f4-415e-929e-100c93b91e6d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "ded0c1b2-3365-45a9-a361-43bd36c1a68c"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11292,19 +11792,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
+ "11944"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025230Z:e76de954-a2f4-415e-929e-100c93b91e6d"
+ "WESTUS:20200826T114618Z:6fe7d1cf-c33e-4771-a3e3-f0c9cce79f50"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:52:30 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11313,20 +11813,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11336,17 +11836,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "664d5a08-2810-4386-958a-f076a4622ebc"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "323266a7-8283-4cff-9952-2c596fbc721b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "82af5ba3-c711-435c-8b29-48e7326cbacc"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11356,19 +11862,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11885"
+ "11943"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025240Z:323266a7-8283-4cff-9952-2c596fbc721b"
+ "WESTUS:20200826T114618Z:44b14d2a-2ba6-417d-a367-2ad39bd0b563"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:52:40 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11377,20 +11883,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11400,17 +11906,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5f51c4f7-aaec-4a68-b169-232a148fc61f"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "40c197f3-53a8-4e8c-9bd1-71af46383e7d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d38317f9-50d1-40a1-9c2e-1825c873b563"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11420,19 +11932,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
+ "11942"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025250Z:40c197f3-53a8-4e8c-9bd1-71af46383e7d"
+ "WESTUS:20200826T114618Z:06aa911d-53f2-4a23-9f2a-1c6e2aee5a86"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:52:50 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11441,20 +11953,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11464,17 +11976,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "68070cff-a7f7-48ee-899d-2c7efd53953a"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a3af278d-3ed0-40db-bcc4-831b2d83019d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "8dfa82a6-d5cc-4422-a105-5253f5c59346"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11484,19 +12002,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11883"
+ "11941"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025301Z:a3af278d-3ed0-40db-bcc4-831b2d83019d"
+ "WESTUS:20200826T114618Z:6c739278-e440-4dbb-89f6-7baf4567eb8f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:53:00 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11505,20 +12023,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11528,17 +12046,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ff9c2019-6caf-4d62-a410-e5720c518563"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "851792cf-2ab2-4dc6-8c56-c4b7b6c00b42"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "5036221d-59cc-44e7-9bcf-b019adda54d2"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11548,19 +12072,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
+ "11940"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025311Z:851792cf-2ab2-4dc6-8c56-c4b7b6c00b42"
+ "WESTUS:20200826T114618Z:3fb3a6a8-e2c4-43db-b8aa-082fce39c6c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:53:10 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11569,20 +12093,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11592,17 +12116,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f5dd928b-75f5-41c6-8432-6b221c541ba0"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "dbc00e29-197c-49c7-8099-2e5bc8b674c2"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "fb897d8d-5ce6-4d60-8e5c-5738d02c56af"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11612,19 +12142,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11881"
+ "11939"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025321Z:dbc00e29-197c-49c7-8099-2e5bc8b674c2"
+ "WESTUS:20200826T114619Z:e81c9202-0759-4ac0-a38a-adc02a829d76"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:53:20 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11633,20 +12163,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11656,17 +12186,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "318f2889-0c8d-4b16-97ec-fb2400edde33"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e93aff52-4c9c-477a-9285-18f106ab8c39"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "73a04abf-0ab3-42c4-a2d4-9b812ea398a1"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11676,19 +12212,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
+ "11938"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025331Z:e93aff52-4c9c-477a-9285-18f106ab8c39"
+ "WESTUS:20200826T114619Z:10a9b6b3-3b94-4b23-9e26-2740137716dc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:53:30 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11697,20 +12233,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11720,17 +12256,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "32dd7b68-981a-4069-81ff-b10f01863045"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "d2462504-f759-4a31-9cef-ed764fd5b49e"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f75f3233-5d75-4d3e-8d55-b795458cf2f3"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11740,19 +12282,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11879"
+ "11937"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025341Z:d2462504-f759-4a31-9cef-ed764fd5b49e"
+ "WESTUS:20200826T114619Z:dc12af1d-a428-4e7e-bd1e-cac5fff31861"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:53:40 GMT"
+ "Wed, 26 Aug 2020 11:46:18 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11761,20 +12303,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11784,17 +12326,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "297600be-b404-470a-96c6-5146ebfa653d"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "06833d73-bded-4373-b0f8-3bf8f45382da"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "1a8d5ebe-0057-4431-9701-d38e725036ff"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11804,19 +12352,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
+ "11936"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025351Z:06833d73-bded-4373-b0f8-3bf8f45382da"
+ "WESTUS:20200826T114619Z:261f5827-93ac-40cc-ab40-bcc7eebbf37a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:53:50 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11825,20 +12373,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11848,17 +12396,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "de4db388-a128-43dd-b81c-e16a65d2bc06"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "46c0c001-fd8d-424b-bd1c-856b15312212"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "b132d23f-edef-46d8-be57-42537bd0171a"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11868,19 +12422,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11877"
+ "11935"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025401Z:46c0c001-fd8d-424b-bd1c-856b15312212"
+ "WESTUS:20200826T114619Z:e9ad3dde-080a-4211-a42d-9a0ed4f91e87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:54:00 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11889,20 +12443,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11912,17 +12466,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d55dc8a1-b2f4-4627-9434-05db69b8622b"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e2974c41-dd48-42ab-a677-183c50838195"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "6bd4d5b3-0e05-46f9-9f5c-65ea4c122c79"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11932,19 +12492,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
+ "11934"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025411Z:e2974c41-dd48-42ab-a677-183c50838195"
+ "WESTUS:20200826T114619Z:00976b6b-952e-4670-992a-c656cf9a413e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:54:10 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11953,20 +12513,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -11976,17 +12536,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "36bc13ac-a411-453e-aa7e-6787ba3b9624"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b73fbc3e-3a0b-40a3-a78c-8a05a7edd31d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "fb60ecc3-2374-4369-8788-8755dfe9d168"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11996,19 +12562,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11875"
+ "11933"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025421Z:b73fbc3e-3a0b-40a3-a78c-8a05a7edd31d"
+ "WESTUS:20200826T114619Z:0d8fc7a7-01c9-47fb-b91b-72ec0a33904c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:54:20 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12017,20 +12583,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12040,17 +12606,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "3731b655-a536-4a5c-8905-e80e9f71cb11"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "42ae4333-bb64-48bc-bcc1-1bbcee6ce0cd"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "9d85117f-fcba-4707-b6ae-bdd8afea94a8"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12060,19 +12632,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
+ "11932"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025431Z:42ae4333-bb64-48bc-bcc1-1bbcee6ce0cd"
+ "WESTUS:20200826T114619Z:f43f1c03-7b7f-44f5-a689-b4efaa49790b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:54:31 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12081,20 +12653,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12104,17 +12676,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "75698bcc-cde6-4670-9f39-cd043ea0f513"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f5bf7eba-2f19-479f-85fc-ee64c8a74ec6"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "955850cf-aa4d-4834-874d-b6e64b16176c"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12124,19 +12702,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11873"
+ "11931"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025441Z:f5bf7eba-2f19-479f-85fc-ee64c8a74ec6"
+ "WESTUS:20200826T114619Z:c92c743e-c76a-43e8-8cc5-d17e316f204e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:54:41 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12145,20 +12723,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12168,17 +12746,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "41c60ffc-12b8-4dff-a021-4b5883a23ace"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "fc96f7de-598d-4be0-9a09-e259e454099b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "01450694-bad7-4cbe-ad08-0822a9f5828d"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12188,19 +12772,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
+ "11930"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025451Z:fc96f7de-598d-4be0-9a09-e259e454099b"
+ "WESTUS:20200826T114619Z:0a0e671d-8c2a-4ae1-8110-90fba34fba81"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:54:51 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12209,20 +12793,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12232,17 +12816,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e9c8c60a-5881-4e8d-aa81-f4466cf7bf06"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e7bf3019-b324-4fb2-a3c2-dfdec5d55baa"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "dc3706dc-e3f0-4b57-b35e-864fde952acf"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12252,19 +12842,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11871"
+ "11929"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025501Z:e7bf3019-b324-4fb2-a3c2-dfdec5d55baa"
+ "WESTUS:20200826T114619Z:133779c4-c52c-45d3-8b05-52d82cdad86d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:55:01 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12273,20 +12863,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12296,17 +12886,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "eaebb98e-59c8-4866-8d57-658d30b21955"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e08ca965-86f3-42a3-b883-743bc3ac46e9"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7dcc07b5-7cdd-41c5-b3ef-92f113dd062f"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12316,19 +12912,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
+ "11928"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025512Z:e08ca965-86f3-42a3-b883-743bc3ac46e9"
+ "WESTUS:20200826T114619Z:eb1e3d82-56cf-4607-965f-e17bdcfe09e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:55:11 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12337,20 +12933,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12360,17 +12956,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5e8afc08-b620-46f7-ab8e-65a9d1b6bd58"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6bc1e97a-f585-469c-abe7-56f79c7b45b4"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "131f85fd-dbf3-48a0-b4e7-c4c651bdf3a8"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12380,19 +12982,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11869"
+ "11927"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025522Z:6bc1e97a-f585-469c-abe7-56f79c7b45b4"
+ "WESTUS:20200826T114619Z:bab2f5e7-2270-4b5f-a98e-7ff3cbbf3bfe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:55:21 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12401,20 +13003,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12424,17 +13026,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "29c06099-843d-4a52-8e7a-48e514206461"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "8047a520-dd12-4961-aa4e-50ad9d6e04e5"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "42e0893f-5fd7-4bb0-96a4-d3d40f3b4d82"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12444,19 +13052,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
+ "11926"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025532Z:8047a520-dd12-4961-aa4e-50ad9d6e04e5"
+ "WESTUS:20200826T114619Z:f6534e93-5a01-4e44-a9d9-49f9992fd47d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:55:31 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12465,20 +13073,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12488,17 +13096,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ac75d80a-c68b-4c4c-b075-defbc1d78336"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c668b7ac-2ba5-4ace-9983-8b9d48804e90"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d69ad58c-9c42-4740-819b-ca848afa7d89"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12508,19 +13122,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11867"
+ "11925"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025542Z:c668b7ac-2ba5-4ace-9983-8b9d48804e90"
+ "WESTUS:20200826T114619Z:24068eae-434e-4f73-967b-57344ad85667"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:55:41 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12529,20 +13143,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12552,17 +13166,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ae2a88e8-167e-4d07-bdd8-2e97572a2bfe"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "66fe3b36-7f33-468b-a55d-182de312ad4b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "0fc88a6b-cc94-48f2-badf-4bb7491089e6"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12572,19 +13192,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11866"
+ "11924"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025552Z:66fe3b36-7f33-468b-a55d-182de312ad4b"
+ "WESTUS:20200826T114619Z:f428c0ed-6870-4000-a25a-b51864c2b228"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:55:51 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12593,20 +13213,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12616,17 +13236,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "10e1a995-4e39-4c01-8017-52c8da6a2310"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "0680d53a-5548-458b-a768-34a7f79e88dd"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d4196114-3088-4181-a290-bb15639bccdc"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12636,19 +13262,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11865"
+ "11923"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025602Z:0680d53a-5548-458b-a768-34a7f79e88dd"
+ "WESTUS:20200826T114620Z:df26645c-9d51-4194-b387-cff430f8c3ce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:56:01 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12657,20 +13283,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12680,17 +13306,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "6bc5b882-7cbc-4118-8f60-f5f2f565795e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "3997fb89-3554-444b-b079-2b6431be57d2"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "34e52dfc-d4a9-40ff-ba22-583a3bc29cab"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12700,19 +13332,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11864"
+ "11922"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025612Z:3997fb89-3554-444b-b079-2b6431be57d2"
+ "WESTUS:20200826T114620Z:5e7781a8-650d-48f1-a4d0-c93d35fa3e0c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:56:12 GMT"
+ "Wed, 26 Aug 2020 11:46:19 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12721,20 +13353,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12744,39 +13376,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "012475d0-442d-42c8-aba4-734a86ca7271"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4354773a-3c88-47cf-b66c-4712c9efccb4"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "bd5d8d5a-6314-413c-aeef-09ebb852c405"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11863"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11921"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025622Z:4354773a-3c88-47cf-b66c-4712c9efccb4"
+ "WESTUS:20200826T114620Z:ee191ccc-d084-468d-8399-77a8db3cef7b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:56:22 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12785,20 +13423,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12808,17 +13446,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "678c3d34-0db7-45cd-aaa5-b87ff1a52c70"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "0b6792b2-b00b-43ef-b240-5fce97cd2696"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "e49e4d62-0dab-459e-8767-2f7acafe2b19"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12828,19 +13472,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11862"
+ "11920"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025632Z:0b6792b2-b00b-43ef-b240-5fce97cd2696"
+ "WESTUS:20200826T114620Z:15e48188-fc92-49d9-b6c6-a3c1a07c359b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:56:32 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12849,20 +13493,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12872,17 +13516,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "61181bf6-53f9-470c-8dcf-9adb93b93f5c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4bfb8963-2409-46c0-af5b-fae2f91f39e7"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "9b4e9ea1-d11e-4397-aaab-ff25299ef0da"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12892,19 +13542,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11861"
+ "11919"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025642Z:4bfb8963-2409-46c0-af5b-fae2f91f39e7"
+ "WESTUS:20200826T114620Z:565e69e6-4533-4b9c-a07f-eed3c8398a9d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:56:42 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12913,20 +13563,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -12936,17 +13586,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "7d670795-258e-4975-9f70-10c01fd6821e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b8128e11-ec06-4e83-9848-981139296089"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "5b6dfc0b-291c-4e0f-bfd9-5aad9221618e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12956,19 +13612,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11860"
+ "11918"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025652Z:b8128e11-ec06-4e83-9848-981139296089"
+ "WESTUS:20200826T114620Z:91e39f86-392a-4248-99a7-c21d9426246a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:56:52 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12977,20 +13633,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13000,17 +13656,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "7eb95d30-cbe5-4e56-8977-80b9e77aaa85"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "3886873f-e5b2-49cd-884b-44bf71567022"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "11cb2e4e-945d-4428-8082-889440cc8f25"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13020,19 +13682,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11859"
+ "11917"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025702Z:3886873f-e5b2-49cd-884b-44bf71567022"
+ "WESTUS:20200826T114620Z:840200fd-fbd4-452a-ab68-fea896cf2f88"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:57:02 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13041,20 +13703,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13064,17 +13726,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "83edfd2b-7398-4f3f-95a6-5e2dcd4de3df"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a9bdb3cd-532f-407a-99b8-e4e3c5e4ff2f"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "2feb8bef-ecfb-40e1-919e-39b3480a5a97"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13084,19 +13752,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11858"
+ "11916"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025713Z:a9bdb3cd-532f-407a-99b8-e4e3c5e4ff2f"
+ "WESTUS:20200826T114620Z:96660f32-1116-4d55-9e40-9674ac68e7ec"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:57:12 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13105,20 +13773,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13128,17 +13796,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c0501864-d9b8-4625-8eb2-b6777a02de3f"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "d5b7ead1-2aa4-4499-8982-5b76c627181b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d7973f82-4559-498d-a575-f9c70245bbb2"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13148,19 +13822,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11857"
+ "11915"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025723Z:d5b7ead1-2aa4-4499-8982-5b76c627181b"
+ "WESTUS:20200826T114620Z:9a4cecfd-a7ab-4d48-a205-10668d7594e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:57:22 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13169,20 +13843,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13192,17 +13866,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "20f15e43-e3ce-4432-aa91-f6f37d7421d9"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f2554960-4963-4f44-b268-d48d4743bbb3"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "fcf82484-cb60-47c4-907f-5ac0ff93d8b0"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13212,19 +13892,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11856"
+ "11914"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025733Z:f2554960-4963-4f44-b268-d48d4743bbb3"
+ "WESTUS:20200826T114620Z:6254119e-1689-49ab-9403-08977a23f0fc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:57:32 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13233,20 +13913,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13256,17 +13936,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e021d99a-3897-4ef6-a2fc-314d6cb46590"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "83196d0e-00b2-4568-bcc9-8f4550ca2c5a"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "f9bd089e-a541-436c-83cd-4bdab3b08eb9"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13276,19 +13962,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11855"
+ "11913"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025743Z:83196d0e-00b2-4568-bcc9-8f4550ca2c5a"
+ "WESTUS:20200826T114620Z:ab78980a-b57b-4119-9000-ee203e59fd75"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:57:42 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13297,20 +13983,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13320,17 +14006,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2c35a8c6-4e32-40dc-81b5-f36ba7964e41"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6772afcd-55fc-4b40-bead-e0202a571664"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "5744b502-fbd9-4c45-b568-aa7167f674a3"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13340,19 +14032,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11854"
+ "11912"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025753Z:6772afcd-55fc-4b40-bead-e0202a571664"
+ "WESTUS:20200826T114620Z:10234bfd-a6bf-415a-a3e0-650c6e740add"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:57:52 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13361,20 +14053,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13384,17 +14076,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4199591e-3462-48e5-8b70-238a3c9920cf"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "671aa609-f11e-4b59-95b3-477d343d0b17"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "441a56ba-5015-4b0f-be7b-9a2a33928b41"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13404,19 +14102,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11853"
+ "11911"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025803Z:671aa609-f11e-4b59-95b3-477d343d0b17"
+ "WESTUS:20200826T114620Z:d9cb8001-f354-48e1-bbba-93be4fe4dfe8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:58:02 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13425,20 +14123,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13448,17 +14146,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d4a84c0e-9213-4838-9ec4-b00e00d39c0b"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a74c61ae-2c08-48fd-af26-da71d465f1bc"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "dcc5e2a3-7362-4c85-a6ba-401f00012b0f"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13468,19 +14172,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11852"
+ "11910"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025813Z:a74c61ae-2c08-48fd-af26-da71d465f1bc"
+ "WESTUS:20200826T114620Z:c16790b0-8b88-4b45-af19-79f1385bf17c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:58:12 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13489,20 +14193,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13512,17 +14216,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "cfd9e20d-ca2d-42cc-91d8-936cb047fec1"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "870d8623-83b4-4694-95e2-eb90c864eb54"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "df593438-92ab-4473-9fdb-6d0bb8991322"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13532,19 +14242,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11851"
+ "11909"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025823Z:870d8623-83b4-4694-95e2-eb90c864eb54"
+ "WESTUS:20200826T114620Z:fc6b44e0-ed0f-4fa8-b270-4fc180567928"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:58:22 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13553,20 +14263,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13576,17 +14286,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "881ea963-da1f-447b-895d-db0a49a3e379"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ccbc5f62-2ef0-4d65-95d4-7769d688eda3"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "d0fb205c-22c4-49a6-80f2-1e504e663b19"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13596,19 +14312,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11850"
+ "11908"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025833Z:ccbc5f62-2ef0-4d65-95d4-7769d688eda3"
+ "WESTUS:20200826T114621Z:0f2ced9a-ce72-4bf4-b391-f5ac7aabd8aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:58:32 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13617,20 +14333,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13640,17 +14356,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "09820a67-390a-4291-8ad8-b50085e4939b"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "bb1e5c74-fd72-4c15-8585-eb22c1577b9d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7cab89c5-31b4-4457-97e1-3bf57954ce2e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13660,19 +14382,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11849"
+ "11907"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025843Z:bb1e5c74-fd72-4c15-8585-eb22c1577b9d"
+ "WESTUS:20200826T114621Z:77db846f-f047-46cc-b7f8-2f610eb6032f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:58:43 GMT"
+ "Wed, 26 Aug 2020 11:46:20 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13681,20 +14403,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13704,17 +14426,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "94c3a102-33a0-4f57-9446-82828ce7d623"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "11987905-e914-47fd-a033-3348912dd0d5"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "57d7eb7b-94a0-46f6-aadb-e437fd311661"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13724,19 +14452,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11848"
+ "11906"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025853Z:11987905-e914-47fd-a033-3348912dd0d5"
+ "WESTUS:20200826T114621Z:e181595f-64b4-4850-9a67-dc64dbeb7575"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:58:53 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13745,20 +14473,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13768,17 +14496,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4abe6990-cf82-489c-9363-fc3eed370e39"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "dd9b18c2-a08b-448d-8239-18109ff7bc14"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "170511da-22d2-43c5-b9b1-f9b718a104c1"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13788,19 +14522,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11847"
+ "11905"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025903Z:dd9b18c2-a08b-448d-8239-18109ff7bc14"
+ "WESTUS:20200826T114621Z:7cfe0a03-5f84-4632-9be6-c9d207ec5312"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:59:03 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13809,20 +14543,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13832,17 +14566,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c390dca8-1b38-4f23-a88f-b7b354e0b93e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "1e900813-77b1-4ce1-867c-04a092d9d6cd"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "69de7b25-01ee-4e8f-837e-ce2073fb34a0"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13852,19 +14592,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11846"
+ "11904"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025914Z:1e900813-77b1-4ce1-867c-04a092d9d6cd"
+ "WESTUS:20200826T114621Z:8d70d93d-63d2-4cd0-b81b-a043be643990"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:59:13 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13873,20 +14613,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13896,17 +14636,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ecc9d64c-b517-4ef1-8377-bcd7b8e83d30"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "54d2ad87-0cb4-4f0e-95a3-127309d78278"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "5a1626a7-ce3d-41aa-aa6c-e7c6755bbbec"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13916,19 +14662,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11845"
+ "11903"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025924Z:54d2ad87-0cb4-4f0e-95a3-127309d78278"
+ "WESTUS:20200826T114621Z:7d039aec-9b7f-4d7d-b29d-2fa7fecc1316"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:59:23 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13937,20 +14683,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -13960,17 +14706,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "26781fbf-751a-4f4e-8361-23badcaa73c8"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e9d530e4-ebf2-4eaa-b534-be152b7561bf"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "10d21486-9040-41ad-b4bf-b85050786647"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13980,19 +14732,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11844"
+ "11902"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025934Z:e9d530e4-ebf2-4eaa-b534-be152b7561bf"
+ "WESTUS:20200826T114621Z:4fd9be30-1e5f-494a-9fd1-ee8d03b9d551"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:59:33 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14001,20 +14753,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14024,17 +14776,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "665106b8-3035-4616-b768-85c220d28bd9"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "941f3650-2322-4767-9a8a-a337f595bec6"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "6539f754-2431-49fd-a13d-8162ac253fe2"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14044,19 +14802,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11843"
+ "11901"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025944Z:941f3650-2322-4767-9a8a-a337f595bec6"
+ "WESTUS:20200826T114621Z:4e3309c0-9cef-4ec4-b3da-f7314d342ce0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:59:43 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14065,20 +14823,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14088,17 +14846,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f7b46b51-fd06-4c56-b21d-ddc86fb946dc"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c6eaf649-b04c-4aab-9d33-7c71c1408e00"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "7cb022c8-623f-43f7-9ff6-2da60e15d3d0"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14108,19 +14872,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11842"
+ "11900"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T025954Z:c6eaf649-b04c-4aab-9d33-7c71c1408e00"
+ "WESTUS:20200826T114621Z:3f62aae5-c9ed-4205-b99e-e40c3d4f33e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 02:59:54 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14129,20 +14893,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14152,17 +14916,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "bade97c2-a3b9-4dc5-8b41-3d4969779af0"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "21d720fa-45d3-4561-8c05-dc47a780bb68"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "4240e913-9d82-4336-a2bc-daa0e4f65347"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14172,19 +14942,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11841"
+ "11899"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030004Z:21d720fa-45d3-4561-8c05-dc47a780bb68"
+ "WESTUS:20200826T114621Z:067c88d0-15e3-4e7f-a598-7b7d5070eb94"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:00:04 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14193,20 +14963,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14216,17 +14986,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "057cfc4c-2338-485b-852f-9a1cdb32363c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9e199505-fe5b-45e8-9adc-bb31718e067b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "8d1fbd33-725f-4578-91c9-23c13faced74"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14236,19 +15012,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11840"
+ "11898"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030014Z:9e199505-fe5b-45e8-9adc-bb31718e067b"
+ "WESTUS:20200826T114621Z:0a983ee7-c1a8-4589-b7e6-4d3c7961167a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:00:14 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14257,20 +15033,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14280,17 +15056,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d7344b59-6bbd-412b-a30b-cea70dc78adb"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "498cad42-b93d-44e3-ac27-b1af62eed3d0"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "b270e283-6aed-4d68-8962-1e9803d37cf2"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14300,19 +15082,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11839"
+ "11897"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030024Z:498cad42-b93d-44e3-ac27-b1af62eed3d0"
+ "WESTUS:20200826T114621Z:ff27f584-ed89-4faa-842a-7412a451298b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:00:24 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14321,20 +15103,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14344,17 +15126,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d4eac2e1-d2f8-40c9-b42c-c6f15fbf6c3a"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "adeb6082-90a0-4dcd-9be8-8e69ce07aaf7"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "c0b88c03-83db-4cfb-a722-490822703fd1"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14364,19 +15152,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11838"
+ "11896"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030034Z:adeb6082-90a0-4dcd-9be8-8e69ce07aaf7"
+ "WESTUS:20200826T114621Z:222f200e-4f52-4830-b298-c4ed593bb62a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:00:34 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14385,20 +15173,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14408,17 +15196,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0fce7623-13cd-47fb-bc62-56820095c548"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b7e4c137-5fb7-43c3-b501-ce33501f749b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "8e7a1e03-e2ed-4310-b8dc-9fe2a4a01b4e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14428,19 +15222,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11837"
+ "11895"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030044Z:b7e4c137-5fb7-43c3-b501-ce33501f749b"
+ "WESTUS:20200826T114621Z:bc0942ac-15b1-4ce4-93b8-c2e7ca973291"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:00:44 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14449,20 +15243,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14472,17 +15266,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e216325c-2da6-4835-ac2b-f432fd9d8400"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c064cccf-ddab-4562-b1dd-5179759e59db"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "b27747e6-8d49-4a47-8970-a66e93d09005"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14492,19 +15292,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11836"
+ "11894"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030054Z:c064cccf-ddab-4562-b1dd-5179759e59db"
+ "WESTUS:20200826T114622Z:b701d6e4-e656-4d65-8bbc-1a2ae563d780"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:00:54 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14513,20 +15313,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14536,17 +15336,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e3027cb4-08ae-48d8-9b0a-eb96e09b4ea9"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "aefb6391-bf62-4a7b-8f42-399a92612ba5"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "2fd270a5-6171-4617-b7bf-6b46a059010e"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14556,19 +15362,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11835"
+ "11893"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030104Z:aefb6391-bf62-4a7b-8f42-399a92612ba5"
+ "WESTUS:20200826T114622Z:fa21cb53-2ac9-44fc-9374-6773afa89602"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:01:04 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14577,20 +15383,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14600,17 +15406,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b0dfc74b-c925-49c0-8d80-fa5ec9dc1308"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9b814705-f522-4bdd-b5b7-365784fdddb3"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "139b8b5a-c7b1-47b1-985e-9d6bd22f3fc7"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14620,19 +15432,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11834"
+ "11892"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030114Z:9b814705-f522-4bdd-b5b7-365784fdddb3"
+ "WESTUS:20200826T114622Z:b7577246-36c0-440d-9620-3f1ced7fcdaa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:01:14 GMT"
+ "Wed, 26 Aug 2020 11:46:21 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14641,20 +15453,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14664,17 +15476,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f7284ee9-be3e-4c2a-9971-562d50016b7d"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "28c5ad82-4ea4-4243-a7a6-dab2053e669f"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "8a0c663a-420d-4172-b002-297f21356400"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14684,19 +15502,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11833"
+ "11891"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030125Z:28c5ad82-4ea4-4243-a7a6-dab2053e669f"
+ "WESTUS:20200826T114622Z:abe191ef-84f5-4081-ab11-07d95bf6b360"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:01:24 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14705,20 +15523,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14728,17 +15546,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "331c3b40-8fad-41aa-94c5-b027fea2082c"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2330a989-749c-4783-912b-421d8c44e8cd"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "a0e8c336-e2d7-42fe-b15d-80455a33fadb"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14748,19 +15572,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11832"
+ "11890"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030135Z:2330a989-749c-4783-912b-421d8c44e8cd"
+ "WESTUS:20200826T114622Z:ed09efb9-f117-476c-8568-0ad9db2c9f87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:01:34 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14769,20 +15593,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14792,17 +15616,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "bf1aa073-147d-4c04-a36f-1b822e1317c7"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7952c0e0-12a7-459b-9a1f-dc5ee0948ad6"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "75d56301-1750-4530-b382-cfdb08582850"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14812,19 +15642,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11831"
+ "11889"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030145Z:7952c0e0-12a7-459b-9a1f-dc5ee0948ad6"
+ "WESTUS:20200826T114622Z:6e076f9f-7c14-4772-aa95-3a05a07d4636"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:01:45 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14833,20 +15663,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14856,17 +15686,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "642f1113-8882-44ca-ada5-a51eff5e0304"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f2a2c1bc-6468-46cf-9d4f-81fdd64d185d"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "bd035a91-17d6-4aab-b1e7-4d15d1d66b0a"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14876,19 +15712,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11830"
+ "11888"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030155Z:f2a2c1bc-6468-46cf-9d4f-81fdd64d185d"
+ "WESTUS:20200826T114622Z:d2959e76-a349-4751-94ce-effbae29d2bc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:01:55 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14897,20 +15733,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eda73738-d417-47eb-9390-abeec45ea9b3?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VkYTczNzM4LWQ0MTctNDdlYi05MzkwLWFiZWVjNDVlYTliMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14920,36 +15756,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "da5e2491-a68e-4132-83ea-d00489cb250e"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b6dc835f-1d0e-47e5-ab28-833ac3889c8f"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "76b434aa-e16d-43b7-8237-799bea567f45"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11829"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11887"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030205Z:b6dc835f-1d0e-47e5-ab28-833ac3889c8f"
+ "WESTUS:20200826T114622Z:40f2cac9-c6cd-4c62-b88c-4cdb4100d373"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
- "29"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14958,29 +15803,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994/vpnServerConfigurations?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0L3ZwblNlcnZlckNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=",
- "RequestMethod": "POST",
- "RequestBody": "null",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "1e1ea582-f970-4360-bde2-c81d590c46f2"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "4"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -14991,19 +15827,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15012,17 +15851,17 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11886"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
+ "WESTUS:20200826T114622Z:45a81a16-dacf-4062-9373-af3c96619c7b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
"4"
@@ -15038,378 +15877,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994/vpnServerConfigurations?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0L3ZwblNlcnZlckNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=",
- "RequestMethod": "POST",
- "RequestBody": "null",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8a3953e1-e177-4c1f-9011-99bd560b1135"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "4"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
- ],
- "x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
- ],
- "x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031618Z:2b42092b-e434-46ae-b85e-f767c330504e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:16:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994/vpnServerConfigurations?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0L3ZwblNlcnZlckNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=",
- "RequestMethod": "POST",
- "RequestBody": "null",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8291d5ac-252f-4f2f-8d92-d8330878ce0b"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "4"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
- ],
- "x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T032923Z:081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:29:23 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:884979b5-3d72-49e6-b74d-7771de602a57"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:71fce7cc-1a22-4cd3-9ea9-ee6370fcf5b0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:5340e4c9-365d-4d10-999c-0a4944c19fe0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YxYTljNzBkLTQ3OTItNDE2ZS04NWVkLTU4Y2Y0OTQ4MTRlNT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -15420,22 +15897,19 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
+ "f1a9c70d-4792-416e-85ed-58cf494814e5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f1a9c70d-4792-416e-85ed-58cf494814e5?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
+ "d4bb7f85-16fe-4ee8-9084-7232886e3f8a"
],
"x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
+ "a84a2389-f24a-45af-8cd9-e3954f3ddf78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15445,19 +15919,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11885"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:c554c41f-7543-4105-8884-68de27ce02d8"
+ "WESTUS:20200826T114622Z:3739ea3d-f03f-49fa-94f0-786b9db5c23e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
+ "Wed, 26 Aug 2020 11:46:22 GMT"
],
"Content-Length": [
- "4"
+ "349"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15466,230 +15940,29 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"profileUrl\": \"https://nfvprodsuppcy.blob.core.windows.net/vpnprofileimmutable/38740033-fb1d-40b3-b298-b8357b579ab5/vpnprofile/4024bac1-79c5-4cb2-b5cb-2b02eb5340b1/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=rwJXjbvo32gfJwRZhiDGBf9ChU5gWJVHXMZDlpGpwII%3D&st=2020-08-26T11%3A41%3A21Z&se=2020-08-26T12%3A41%3A21Z&sp=r&fileExtension=.zip\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953/generatevpnprofile?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzL2dlbmVyYXRldnBucHJvZmlsZT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"vpnServerConfigurationResourceId\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\",\r\n \"authenticationMethod\": \"EAPTLS\"\r\n}",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:e2304675-07d6-4206-8cf6-015724626675"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "0b6bd93a-1159-470b-ab2c-552c9ce7d8ff"
],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:8acd8129-cca7-4b94-91cf-b284f8fe7add"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
- ],
- "Content-Length": [
- "4"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:cc4288c8-cf69-4f99-93bb-64bc7c98c65c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:05 GMT"
- ],
"Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "215"
]
},
"ResponseHeaders": {
@@ -15700,22 +15973,19 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15724,17 +15994,17 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030206Z:f4ac9c3c-450b-4be1-8981-cabc6bbf5590"
+ "WESTUS:20200826T114623Z:7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
"4"
@@ -15750,16 +16020,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -15770,22 +16040,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15795,16 +16065,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:9dbc0e01-30b6-4845-b767-2a5221d96140"
+ "WESTUS:20200826T114623Z:71a7daca-21ee-44c2-8ab7-b01ac5578baf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
"4"
@@ -15820,16 +16090,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -15840,18913 +16110,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:78e99f99-bd00-48eb-b543-c34e1cdcabfc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:328c2aa0-83ad-4cef-bb67-fc8f5f72489a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:87673993-299c-4928-b866-591cd2068fa2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:9b5dedc6-6c58-4e7f-9bde-621dd300089a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:4327a52d-813d-4ef0-b34b-e0bf3daf00a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:34929062-7e6e-45d1-bad4-5e4b90250717"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:72875850-3970-4585-82c2-55244bd5cc0b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:f51e3459-0c27-4639-a3b2-cc7c05bf8b8d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:49bc53f9-78b5-41b3-b9ed-3e24a49b69dd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:5eac4050-8b7f-4bc1-8035-8acaf1373b5d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:52276c34-2475-4fce-b5d2-889ae34f47f0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:06 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:6cf00365-6d61-4280-b44c-6504a53cdd5b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030207Z:b457fa2b-5ae9-408c-8ed2-111396aa9474"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:fc6ee5c7-a323-4d5d-83ee-2a10b41d149e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:335eeef0-94c3-48b0-8960-a96b501fddab"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:977fb590-fdd7-4d2e-81f3-34a1053d3f0b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:7403a9cb-e3a3-4ca5-98dd-1552598c37f2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg1NWEzYjMxLWFkNDItNGE4OS05NzNhLWQ2ODZiYjM4NGQ2YT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/855a3b31-ad42-4a89-973a-d686bb384d6a?api-version=2019-08-01"
- ],
- "x-ms-request-id": [
- "855a3b31-ad42-4a89-973a-d686bb384d6a"
- ],
- "x-ms-correlation-request-id": [
- "a3d9a115-7e3c-4ea1-9762-036cfcadb76b"
- ],
- "x-ms-arm-service-request-id": [
- "9fda4dfd-dd36-40fc-b9e1-4b98b9a3c23d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:4dbc8d00-7d3c-4d37-930e-b4b5840c47dc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "191"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"vpnServerConfigurationResourceIds\": [\r\n \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "203ad588-ab64-494a-9594-ae45070b5f4e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "b0fe07fe-5319-47c3-99ac-b69406ceaf8f"
- ],
- "x-ms-correlation-request-id": [
- "5733f4fc-9a05-44f7-9e10-e51862b895d4"
- ],
- "x-ms-arm-service-request-id": [
- "56f16a4d-8d8b-4605-9620-1a7b96e035f8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030208Z:5733f4fc-9a05-44f7-9e10-e51862b895d4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:07 GMT"
- ],
- "Content-Length": [
- "2799"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"c9452775-e5d9-4d5e-a21a-cdf5a1b3c137\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4a0d3a2a-f1aa-4a07-b8f0-58eef9ec8932"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "57471467-e167-4d35-bb96-9d2383e2e884"
- ],
- "x-ms-correlation-request-id": [
- "a17972b8-9265-4077-9fdf-9fca8f887be7"
- ],
- "x-ms-arm-service-request-id": [
- "259b17f5-38b5-411b-a82d-f4da8467ecd7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030236Z:a17972b8-9265-4077-9fdf-9fca8f887be7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:36 GMT"
- ],
- "Content-Length": [
- "5113"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"c9452775-e5d9-4d5e-a21a-cdf5a1b3c137\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5564014e-6e05-40f0-b020-dabee648e595"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "ebc401b8-fe75-4e67-b78e-a72d18eb28ee"
- ],
- "x-ms-correlation-request-id": [
- "006d5302-e8cb-4e5d-875a-e2e3f6b6731f"
- ],
- "x-ms-arm-service-request-id": [
- "8d034603-3f44-48be-9167-afa8cc1ca507"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031632Z:006d5302-e8cb-4e5d-875a-e2e3f6b6731f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:16:31 GMT"
- ],
- "Content-Length": [
- "2799"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5203\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"etag\": \"W/\\\"c9452775-e5d9-4d5e-a21a-cdf5a1b3c137\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ],\r\n \"p2SVpnGateways\": [\r\n {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/generatevpnprofile?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzVnBuR2F0ZXdheXMvcHM1MDA0L2dlbmVyYXRldnBucHJvZmlsZT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"authenticationMethod\": \"EAPTLS\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "346cc5a9-bc34-4e47-b98b-0586ba77193b"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "40"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:08 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:17a44527-8820-41ac-825d-5e3f3f23e1f2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:08 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:ac20b6c0-94ef-4460-868f-102cd3f07be8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:47fc2146-ee9a-474a-8eb4-af45db82eb92"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:2aafb1db-1e68-4fc9-a604-45ad0af8e476"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:f5977657-4b85-47ac-b021-81424527df2c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:d7d77a7a-25a7-4c11-a9ee-b048d4fe6a77"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:6ca50341-ed6b-4453-92c8-8f98ff333769"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030209Z:7cb941e4-543e-43f0-9817-1ae35b528db0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:dc4da49c-f96b-42ff-a352-75d02c97257a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:74f67b9f-7151-4d7a-a68b-caec2f3aae57"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:444da283-5e58-4d5c-a53f-7f5aa53fc425"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:02f4c4b6-fb55-4467-a22c-dc9c233cb539"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:97414a59-ae0d-4fe7-9588-0df35190a200"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:61a51dc0-b281-48a7-99da-3f0a57807098"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:1768a52e-2445-4cd3-ae0e-bddc2c77e1b6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:09 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:db3e397c-23e2-4ef1-b2c5-23ea2a2f2b43"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:88a6af88-9d6a-4173-ba79-e298ad660e22"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:8e33582f-2b86-44e7-92f3-91e6ec6c6bc9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:412e2f0d-e5f1-4ad9-8b9f-021a5b3300d5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:65d30a22-6133-4262-8d58-2de7a0fe6940"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030210Z:e03d5659-1e61-444f-ac1e-6ca0b125a4f3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:fcd0c163-c054-4029-a336-819c7062d36f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:a2f95196-989d-44ff-af78-7c6550a4bf2d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:4608ea2b-c9fc-4fdc-9375-09bf2a86c61f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:e230acd5-2dbc-4260-b2e5-d13ef2dc849d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:16251432-6ff0-4eb9-94a6-f1cf79bc56ad"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:a3848bb9-ca7b-4a31-bb94-9c5674221ebc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:38c59f55-d83e-47be-b2a9-82741d1e40c2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:d9d003bf-4472-4c63-9ca5-2ea5813a4097"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:10 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:f1edbe0e-37f9-4822-89ab-1964dd1c7457"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:5e62339d-10d9-45e0-9e8a-f5cc7c79587d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:782b069e-6aa4-4bb7-9889-b836678ad948"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:b4b52af3-6568-4f91-89fa-a32eec79a498"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:4f3d3a52-8086-49bd-9ee4-411b7a2dd1a2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030211Z:4a721cab-4753-4f8d-b6ea-abb96537b7d2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:5b4f82fe-6b2d-471b-b209-5c1d6ece3c99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:d8ba0375-5db4-469a-b6cc-61ef9c0b5d4b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:f3ecc882-2fdc-4aa0-8222-2dae1b6e2ea6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:3dc7c596-6b3c-4695-b665-f87cba921ae2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:fd58be42-8082-4c16-861b-7551d32b66df"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:748c0cec-67bf-4eaa-9411-1c4aa232edb2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:b3bf85ab-f131-4cbd-b7c9-4624439e090a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:3c569b7d-2ef9-4ba5-8202-8f5d91002a47"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:11 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:a8fff34a-1a76-4842-9efa-107b6797496f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:ff4d9b08-8718-4dff-a84b-9ad56cd7a87d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:7a7bb434-9058-43d0-b0aa-e1ce5c9a35ae"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:8f4d4e2b-675a-4aac-a5ca-8aa9357ad2c8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:4d63dee9-c1ca-4e1d-9272-69c1676209b5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:d42328a6-e90d-4c32-bd22-f9392f44ebbe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030212Z:c18ed0b6-1bdc-425a-824a-f857dcb29b13"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:5aebd462-730c-4b2d-a6c7-de6fbb2ba449"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:41427677-9dfe-461f-85cb-660463062b03"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:4f4ceef2-8b3c-4216-abe1-ac2188cfe790"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:b6c08c3d-a5cf-4027-a675-dbbf8678b748"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:dbdcfe76-d2e9-4b82-b36e-1cf9d80ed4ac"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:1f5e6ada-0ba3-462a-b444-06984d73455f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:200c162f-499b-4210-a205-ecea73085297"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:12 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:b5394c64-1d59-4e6a-bb5e-8cb193a23c0d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:3f36bcb7-96e2-4f5b-b19a-a221714ab371"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:edc972f1-4ed7-4168-b856-efbff125d4d6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:8aa09f1d-4da1-46f6-979b-8fe176835dd2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:27d008de-0668-4f54-b288-649e7a054c47"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030213Z:892dedc3-9d6e-40f4-bbff-85a6c37919c3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:b864a999-a9da-4190-a738-47533e2b9bc8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:a8501b07-327f-4836-b6a5-c0f14584fe0b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:3a7c15e8-731e-42d4-8d96-ae726647618b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:e2caf404-d8f7-4df1-aba9-aabb1f5c74e8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:6fa16058-6490-4ca6-abd0-7b7254e396b2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:d445c9c4-bc67-4496-8c11-b1194e58732d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:1b46b3a4-2172-4bed-9508-03285aa5213b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:13 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:77fb888c-f444-4f47-a3c5-733e51e89fa1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:ad89bc7b-badd-4a1e-914b-56d76f699b93"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:78b78ae0-70f1-4856-a2e7-f884c2012fe0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:394794ea-56ec-4ed2-b540-e328d0ea4d38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:ba38caa5-8e2c-4829-baee-95ed9a76e9ba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030214Z:030302c1-bfdd-49e9-8697-e69c84c9bc58"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:f9c710bf-5bd8-4c20-b8c4-69f0930fbc61"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:21563158-e387-4197-a770-38e35b647726"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:f22223bb-ca48-4f5c-9950-9bc5fe2b57fc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:ec870673-4c27-4e11-b28e-8c8c08505653"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:ce6e1de9-3e42-4fc2-bc91-5b86dfb4beb3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:0ebff5b2-37c7-4c00-ac03-7091ee50daa1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:c98667fa-4f7d-4847-b9c8-43a91f122728"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:14 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:178b78be-5ace-4a87-b1b3-dc3962b02a9c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:37d229c4-473b-4298-b4b3-32c08b50b607"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:70cccf62-c633-42cb-8a1b-860753208e59"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:caf637d1-9100-4349-8064-365dd04aa1ee"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:26ba85a4-db0e-4210-8a75-c36156efced4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11909"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:be946c89-e209-4528-8d65-e69e8b553d2f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030215Z:41a1a60e-df10-4bde-93ac-70fcdc2533bc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11907"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:1caa9bff-2205-4146-bbeb-e00a48ccd5ea"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:7ca92999-42ba-4638-9f8b-6bd98c9a7a4d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:4115d4f0-dc59-41b6-a3e9-9adf7407741d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:6a584d56-612a-4c01-9d20-3cc84be74fa4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11903"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:c83ee36e-5e11-48ed-9001-84b5396fb9fa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:cd6044bc-f9d2-4cbf-9905-b6a7c647ab20"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11901"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:bcda61ee-53bb-4ad2-9c6b-3ba4a1f5bdeb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:15 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzYzJmYTU3LTUzYWQtNGU4Zi1iMmIxLWY5NGRiZjdkMjdkMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-request-id": [
- "63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/63c2fa57-53ad-4e8f-b2b1-f94dbf7d27d2?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "3ca07bb2-376a-4740-b9b9-26a14dae5cf0"
- ],
- "x-ms-arm-service-request-id": [
- "e4d59979-f882-4ec7-9a2e-a2b2f73e2a28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030216Z:ca44ada9-9f61-40f9-9b07-79cbc94f1666"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:16 GMT"
- ],
- "Content-Length": [
- "349"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"profileUrl\": \"https://nfvprodsuppcy.blob.core.windows.net/vpnprofileimmutable/567a0033-2ca0-45e1-a7ce-4ca823b19784/vpnprofile/7b17661b-857b-40e5-ab13-f1c6433f392a/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=viKatQDpIM2Kn2VGSsj3rnh1Fkd4Llekm48g1TAVszs%3D&st=2020-05-31T02%3A57%3A14Z&se=2020-05-31T03%3A57%3A14Z&sp=r&fileExtension=.zip\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994/generatevpnprofile?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0L2dlbmVyYXRldnBucHJvZmlsZT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"vpnServerConfigurationResourceId\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\",\r\n \"authenticationMethod\": \"EAPTLS\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8c18977f-c5d7-4e0a-9753-11387eabe085"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "215"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:16 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:66c960f2-ce11-4891-b02f-987e8c4ef640"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:16 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:ab1a95f7-118e-4630-8045-84006f0a225b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:16 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:ed9264b1-2823-4729-ab33-d9e2c8f01656"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:de576886-a1d3-4cf8-93dc-b8a601e72791"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:4a44674e-5620-4004-b17f-ea945d04d72b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:b1e33a5b-f329-45ff-9cab-8d2b35f3e075"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:7dc86b37-3015-4f86-81ee-406ad6fd60c7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:fb9b2e37-76c8-472b-8ce6-6f3de8c57e0f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:141ba364-b87e-4c52-9c2b-696ed6a904ef"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:9676f7bc-fd18-470d-b1f1-670d26862e4b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:fc39fd6c-dd8e-47ab-9084-a5b1c5ccdff6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:1e023e4c-e6c6-4b83-b565-512b0676354b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030217Z:535772d4-b551-43fb-b7b6-afc4a8e8f3a3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:e3bd1194-a093-4472-a222-521f686137f0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:8615a12f-edb3-467a-aa67-6d3e72c0ce55"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:3cbbfb7c-d65a-4d03-bf11-6df871e71759"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:f8920b0b-d8e5-4f00-8ca6-55fe7537bd1b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:17 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:d98d9466-1d42-42ef-a012-a05fc901e2ab"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:a3ad5dc0-0a9e-4583-ad67-1e5a841afd3b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:4565df8a-59b2-4390-880e-0e6d3d48151e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:54c62239-daf5-4f19-947c-0a7428c75a58"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:9efc129f-33ba-417c-a650-4d2f9259551c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:6e48ce06-d20d-4913-9cd8-38d4c07bb68d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:04cec8c2-7031-434f-863d-1307fcb87fe3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:dd960c85-27f6-4632-be79-bc0ba846b57b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:083a9217-ec1a-4905-b758-d27a20321665"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030218Z:fb7c531f-3dcc-458a-8f46-01fbefecacf1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:b2806cf9-4824-4742-bc10-d343a140b95e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:3fb303c9-3e49-44e5-9015-d5122592b57a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:68b18691-dd7d-4838-bbed-77ec2adf9964"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:aea8f70b-794c-439d-91a0-ff7712ef422a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:f2276019-b7b4-4775-bf69-947dec676463"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:18 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:767d52dd-e89c-48d2-8861-6cc78684ed7e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:5e7fa73e-92b7-4a90-bebe-b047c8b6fd48"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:4721d1fe-e7ae-402a-80f9-a7c56bc52888"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:edade66c-5c89-422c-b8cc-b2281c8017aa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:411464e5-22c0-4927-93d4-45881a838793"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:db09ada7-ebfd-4588-ae94-dbf433e34dac"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:878ebc78-eb16-4f98-a411-d93af675cb56"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:befaf90e-c9ce-4757-ad3e-e3e31976055b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:12b92caf-256a-4784-8682-3cb56939cf08"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030219Z:f01d2d89-f7be-4f1a-bb14-6f2bbbc62564"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:b944089e-e02d-4d0d-a39d-dccfcb13e045"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:63e3195c-008e-4ed8-85e2-65146cf70e67"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:6099cff0-c74b-4f10-bc70-3758ef82b3fd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:1106dc2a-9413-49f1-a607-3d324e699ff7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:2d55e65c-7326-4d9f-8a08-6ed793b665cb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:19 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:77221fa6-fab1-4db7-b7f9-7d8bd6bd423f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:6787be08-b7d1-4542-bba7-64aa2400b094"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:f206caac-b49e-4399-b8f4-d282d070c025"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:a41e7f5c-e58f-4da1-9e46-4b7f60ea41be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:262fc5cf-309c-4e01-bd9e-79d9a84a2971"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:3f004b44-1d9d-4c80-9c02-8e74e2f0329c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:8b9d8c8a-f0d9-4fe0-b06d-40f5d7b4288c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:b23eafc6-1fa8-4b16-beae-36fa399251a1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:02506574-9f19-48cd-9aa4-8a19c14c0d88"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:8545af3b-5614-4322-976a-eaea65149c9c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030220Z:7baf1fbe-7f7c-4edd-bdc1-cb0944f98118"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:1418aa4a-2201-458d-a1d3-a1e7e0607a3d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:65791e42-ad6d-470b-9344-4f1ea3363c62"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:a61b5711-e665-4494-8e79-88ef067bf74e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:f834c967-264d-48c1-897a-9c5d2036f5e9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:20 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:2d7b4bfd-abfc-4d3a-8fb0-25b0af9258bc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:c34b62b2-3e8b-46c1-9229-74a381c0aa92"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:3bd96c66-b59a-4d97-b961-eb0201abaac8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:c7b7298a-5b9c-48b2-8ad0-bea276075885"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:c4b82eee-379e-4f8b-9482-5d542f183829"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:e7b80ce0-0347-45ce-b527-79c8cd2235a4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:4e5eab5c-ee76-4747-ba80-e0112c81671b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:524be5fd-df1b-4042-af96-b33ee29d43be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:10c71a0a-62d3-4c26-a2d5-97c31e5368ba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:c5e3e127-ae9e-4b36-b435-ebf5b8879c90"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030221Z:a4d25001-e11b-4aa3-badd-6aab05aeaf1f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:399b6abe-a78c-440d-b4c7-ce547b5c863e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:14fb5c93-fb8f-44d0-8b9b-c4c97be7e0a2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:bc94c13d-0e3a-46a2-a856-ed2e551376c6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:89a1c275-d8ab-4626-ae94-95981da773cd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:af800fae-3959-423a-b209-9d5aa4e5499a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:21 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:f1521485-fa17-4ce3-9a5b-81f3b9916555"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:5c65b430-d918-4332-8a38-b2da509bca1c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:185c07b6-876b-45b6-96a9-78b2fff3daa0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:7838bbca-9645-411d-b429-b300b42d91c6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:f42bc48b-a225-4767-9bdc-935c8c952943"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:2c717a5c-63f5-4d62-be32-695f50a66c2a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:a9b5cebf-1fcb-4632-846f-1dfb174c484b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:905e66a7-1e34-47e5-bfb1-19efd8ef2137"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:d0e4c057-4e0a-4a4e-a67e-d03d939b2681"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030222Z:2665182f-a27e-48a6-afcc-a2ec3acff4bf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:c9006f8f-4543-41a2-bfb0-65440eb50b4e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11909"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:508a9556-f7d3-4710-a499-35cb33ec6866"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:eafe7caa-ef09-48b0-95a0-da97befbf53f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11907"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:c94a62fc-fc4a-4d82-ae16-9bb5baa954d6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:89be5cf8-6af4-42af-8366-901aaf6b69c1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:22 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZjNTk5YzljLTVmZWQtNGE4OC1hMmFlLTdjNjIwMDY3MjQzMz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/6c599c9c-5fed-4a88-a2ae-7c6200672433?api-version=2019-08-01"
- ],
- "x-ms-request-id": [
- "6c599c9c-5fed-4a88-a2ae-7c6200672433"
- ],
- "x-ms-correlation-request-id": [
- "352990b5-b28b-414c-a3bb-6ef95c83f571"
- ],
- "x-ms-arm-service-request-id": [
- "2dc42215-8522-4689-8887-438ba667ba62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:de88c63c-54a9-4ec4-834f-8a5b8ae7ed6b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:23 GMT"
- ],
- "Content-Length": [
- "351"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"profileUrl\": \"https://nfvprodsuppcy.blob.core.windows.net/vpnprofileimmutable/a8725689-208d-4a9d-95c2-06ea248b528b/vpnprofile/07d3d06d-10ac-40a7-b304-aecb2e5926c6/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=qN2bxEgfOCUdExIhxCji4046tI8Qe6rmMr%2BmjM9AlIw%3D&st=2020-05-31T02%3A57%3A22Z&se=2020-05-31T03%3A57%3A22Z&sp=r&fileExtension=.zip\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d27ea3d8-5971-4c62-a1b7-0f00bdb60596"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "6865eeab-42cc-431d-aaae-1f47a7434405"
- ],
- "x-ms-correlation-request-id": [
- "6865eeab-42cc-431d-aaae-1f47a7434405"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030223Z:6865eeab-42cc-431d-aaae-1f47a7434405"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:23 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "156"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnServerConfigurations/ps97' under resource group 'ps7860' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\""
- ],
- "x-ms-request-id": [
- "3ec81a5b-65d9-4bb1-b3b2-c69b6bc12ecf"
- ],
- "x-ms-correlation-request-id": [
- "19af5193-1a2e-4bde-8a06-7bcf10dcebb1"
- ],
- "x-ms-arm-service-request-id": [
- "ccb41c35-58e9-4b21-8ecc-9ab69513a0b0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030235Z:19af5193-1a2e-4bde-8a06-7bcf10dcebb1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:35 GMT"
- ],
- "Content-Length": [
- "2175"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c59025e5-0906-4191-8638-a376f9826799"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\""
- ],
- "x-ms-request-id": [
- "fdc77704-07ee-4c17-a0d0-8d0ab781efde"
- ],
- "x-ms-correlation-request-id": [
- "dfa9a473-95b2-41cd-8224-1c0024089ecd"
- ],
- "x-ms-arm-service-request-id": [
- "e834087e-6988-4e1f-8527-a6238334baf3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030236Z:dfa9a473-95b2-41cd-8224-1c0024089ecd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:35 GMT"
- ],
- "Content-Length": [
- "2175"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1a2e529d-0dcf-4394-abd0-5ed52d885c7a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\""
- ],
- "x-ms-request-id": [
- "c1bfc256-477a-474b-8e94-873642e622ad"
- ],
- "x-ms-correlation-request-id": [
- "da3f82af-4e71-4f55-9558-8c1333c9c9c8"
- ],
- "x-ms-arm-service-request-id": [
- "e4607fb9-bfa3-4875-90ad-4568c58668b5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030236Z:da3f82af-4e71-4f55-9558-8c1333c9c9c8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:36 GMT"
- ],
- "Content-Length": [
- "2175"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"a8e99b70-d7c8-4805-a3cf-c0ea6c4f9aef\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"8735c922-c83f-4836-8c33-70bcf5b4acbc\""
- ],
- "x-ms-request-id": [
- "9ac0bbeb-ecc5-4eab-8710-ba195c7e0e48"
- ],
- "x-ms-correlation-request-id": [
- "f4a4175d-3ecc-4def-aff5-b870b938ecb8"
- ],
- "x-ms-arm-service-request-id": [
- "bc7eb96d-b255-4880-b1f2-d4482fe16396"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030247Z:f4a4175d-3ecc-4def-aff5-b870b938ecb8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:46 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"8735c922-c83f-4836-8c33-70bcf5b4acbc\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5b16213d-a109-4e71-81da-d25dfebe45fe"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"8735c922-c83f-4836-8c33-70bcf5b4acbc\""
- ],
- "x-ms-request-id": [
- "b7fd90b6-49bf-4e93-831d-e1a8d3b2594c"
- ],
- "x-ms-correlation-request-id": [
- "c73a8423-7713-4bd0-b8b1-f0e10c913b5c"
- ],
- "x-ms-arm-service-request-id": [
- "6fe527b8-e799-4cae-809c-41c148cfb92c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030247Z:c73a8423-7713-4bd0-b8b1-f0e10c913b5c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:46 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"8735c922-c83f-4836-8c33-70bcf5b4acbc\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bcd6a803-9ec0-4153-baa5-9bdc7d75592c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"8735c922-c83f-4836-8c33-70bcf5b4acbc\""
- ],
- "x-ms-request-id": [
- "8337527c-02f5-4a15-b09c-afe4dc945c82"
- ],
- "x-ms-correlation-request-id": [
- "5f49e306-72af-4abc-8996-1cef9e61d9aa"
- ],
- "x-ms-arm-service-request-id": [
- "ccca04a3-3307-4ab8-8584-73814f6a054a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030247Z:5f49e306-72af-4abc-8996-1cef9e61d9aa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:46 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"8735c922-c83f-4836-8c33-70bcf5b4acbc\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"dfe0c9db-2b83-4cc4-9be0-887369111e5a\""
- ],
- "x-ms-request-id": [
- "d39aaf98-3fc0-44e0-92f2-1f4cf8bfe811"
- ],
- "x-ms-correlation-request-id": [
- "b0deef10-4060-4e38-87e6-76c6dd639ad2"
- ],
- "x-ms-arm-service-request-id": [
- "cdd38e0b-4893-4a49-9169-923e95500099"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030258Z:b0deef10-4060-4e38-87e6-76c6dd639ad2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:58 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"dfe0c9db-2b83-4cc4-9be0-887369111e5a\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1d99540e-52f6-44b9-8b44-f87c6bf4d911"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"dfe0c9db-2b83-4cc4-9be0-887369111e5a\""
- ],
- "x-ms-request-id": [
- "c5a3ea32-8bdf-4260-a17c-090bd0e443e4"
- ],
- "x-ms-correlation-request-id": [
- "20e98f06-ca50-4c8f-8f35-0f7d42dbab83"
- ],
- "x-ms-arm-service-request-id": [
- "fbf8fac5-2d3e-4570-a373-fb39950a44a4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030258Z:20e98f06-ca50-4c8f-8f35-0f7d42dbab83"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:58 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"dfe0c9db-2b83-4cc4-9be0-887369111e5a\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"fa70c48d-1adc-48f1-a456-a35ee2cf9467\""
- ],
- "x-ms-request-id": [
- "cfe7b8c3-2289-49c5-b75d-5a4e8d171115"
- ],
- "x-ms-correlation-request-id": [
- "7091866b-3368-4028-9279-acc4cf9383a4"
- ],
- "x-ms-arm-service-request-id": [
- "96a2eaec-fbf5-4f54-9df0-a8ce9c7cded1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030309Z:7091866b-3368-4028-9279-acc4cf9383a4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:09 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"fa70c48d-1adc-48f1-a456-a35ee2cf9467\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "843e3e25-eddd-4a3b-89c6-fd7d9ea21b27"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"fa70c48d-1adc-48f1-a456-a35ee2cf9467\""
- ],
- "x-ms-request-id": [
- "a91e0797-49d7-43a6-b664-f0642f7062b6"
- ],
- "x-ms-correlation-request-id": [
- "5ca7dd40-70ba-48ec-a6f4-4749b5148092"
- ],
- "x-ms-arm-service-request-id": [
- "29711589-9bf8-4f01-ba46-6991c4b7c3bc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030309Z:5ca7dd40-70ba-48ec-a6f4-4749b5148092"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:09 GMT"
- ],
- "Content-Length": [
- "2176"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"fa70c48d-1adc-48f1-a456-a35ee2cf9467\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a64db0d5-743c-4def-8a7b-df61059ea4ac"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "1863"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "f71aaf47-c98c-4168-815d-ebbb0b720e24"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f71aaf47-c98c-4168-815d-ebbb0b720e24?api-version=2020-04-01"
- ],
- "x-ms-correlation-request-id": [
- "ccc345b2-c746-4cb9-8dcf-62c54bdbb453"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
- ],
- "x-ms-arm-service-request-id": [
- "ba8b6716-59fb-4ec5-a29d-97da7998e342"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030225Z:ccc345b2-c746-4cb9-8dcf-62c54bdbb453"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:25 GMT"
- ],
- "Content-Length": [
- "2174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"e4628769-0617-460b-9049-bc569590b431\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"location\": \"westcentralus\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e691bb85-c56d-4231-93e6-e94777c29ea4"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "2005"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "59f16242-6f2b-4dd5-bebd-6ae9033425c9"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/59f16242-6f2b-4dd5-bebd-6ae9033425c9?api-version=2020-04-01"
- ],
- "x-ms-correlation-request-id": [
- "9b0b3290-2f7e-4873-b237-b2e10e2c0d71"
- ],
- "x-ms-arm-service-request-id": [
- "48cf5687-7750-4b20-ace6-61e21c455e0e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030236Z:9b0b3290-2f7e-4873-b237-b2e10e2c0d71"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:36 GMT"
- ],
- "Content-Length": [
- "2175"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"cd08241c-c853-4178-8e1a-4c1b775e4e35\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"location\": \"westcentralus\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3171f4a8-84ad-419d-9319-66c7cdd5a3d7"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "2005"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "8f6699da-9aad-4e02-ae65-349c1ca2e3e2"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8f6699da-9aad-4e02-ae65-349c1ca2e3e2?api-version=2020-04-01"
- ],
- "x-ms-correlation-request-id": [
- "d825f18e-63f7-4869-8736-7fe2ef4d65fe"
- ],
- "x-ms-arm-service-request-id": [
- "d45e2116-8858-44f5-ab83-b4629e153ac6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030247Z:d825f18e-63f7-4869-8736-7fe2ef4d65fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:47 GMT"
- ],
- "Content-Length": [
- "2175"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"15f69578-01d0-455b-947f-9e7123179b8d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"location\": \"westcentralus\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "134c763c-8031-47f0-934e-0e1dde708fc2"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "2005"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "eafaf719-e6d4-4018-a569-160cf89a1d7e"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eafaf719-e6d4-4018-a569-160cf89a1d7e?api-version=2020-04-01"
- ],
- "x-ms-correlation-request-id": [
- "5f7a5fa8-6eae-47f5-b5ef-626db7f93cf9"
- ],
- "x-ms-arm-service-request-id": [
- "de9c658d-a223-44dd-b26d-04f7af56f19b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030258Z:5f7a5fa8-6eae-47f5-b5ef-626db7f93cf9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:58 GMT"
- ],
- "Content-Length": [
- "2175"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"ps97\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97\",\r\n \"etag\": \"W/\\\"05344f5f-c552-4c37-bc94-cfcc76983055\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/f71aaf47-c98c-4168-815d-ebbb0b720e24?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y3MWFhZjQ3LWM5OGMtNDE2OC04MTVkLWViYmIwYjcyMGUyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "a2cf58f4-09a4-4fd2-9f90-830f46b86776"
- ],
- "x-ms-correlation-request-id": [
- "2a9cceef-22f6-4e0c-ab21-5037babcef48"
- ],
- "x-ms-arm-service-request-id": [
- "ff74273b-df53-45c5-8493-9bf36f48f496"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030235Z:2a9cceef-22f6-4e0c-ab21-5037babcef48"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:35 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/59f16242-6f2b-4dd5-bebd-6ae9033425c9?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzU5ZjE2MjQyLTZmMmItNGRkNS1iZWJkLTZhZTkwMzM0MjVjOT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "20b31b3a-a28e-423a-92ce-b4e46834b426"
- ],
- "x-ms-correlation-request-id": [
- "0c94cea6-3098-4d4a-a3dd-676e82d9a67e"
- ],
- "x-ms-arm-service-request-id": [
- "735cf886-e05a-4787-9ecc-dddc870681b7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030247Z:0c94cea6-3098-4d4a-a3dd-676e82d9a67e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:46 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8f6699da-9aad-4e02-ae65-349c1ca2e3e2?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzhmNjY5OWRhLTlhYWQtNGUwMi1hZTY1LTM0OWMxY2EyZTNlMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "af12f03c-f609-4036-8aec-76fa6bfb3efb"
- ],
- "x-ms-correlation-request-id": [
- "66ee73bb-7ba3-4da9-831d-3bf67461db46"
- ],
- "x-ms-arm-service-request-id": [
- "d67d7101-f86b-45c7-8710-8ff5387a4704"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030258Z:66ee73bb-7ba3-4da9-831d-3bf67461db46"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:02:58 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/eafaf719-e6d4-4018-a569-160cf89a1d7e?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VhZmFmNzE5LWU2ZDQtNDAxOC1hNTY5LTE2MGNmODlhMWQ3ZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "594e80d3-82fa-4f56-98fa-fb53d0f922fd"
- ],
- "x-ms-correlation-request-id": [
- "02e40b04-27e0-487e-9aa9-588ba0c7f153"
- ],
- "x-ms-arm-service-request-id": [
- "19f1d1a2-1160-4288-9f32-d503aebfed70"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030309Z:02e40b04-27e0-487e-9aa9-588ba0c7f153"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:08 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "e74c8a91-921c-458b-8775-8ec2f859b602"
- ],
- "x-ms-correlation-request-id": [
- "c3161cc6-1f8f-49b5-868a-8e18d6803275"
- ],
- "x-ms-arm-service-request-id": [
- "5ad8c113-6fce-4fb2-94a4-ad6454306f2a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030320Z:c3161cc6-1f8f-49b5-868a-8e18d6803275"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:19 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "f8020624-856d-4d6b-ba70-e9dd1fdda0f1"
- ],
- "x-ms-correlation-request-id": [
- "6394dbca-4e2c-4eee-921d-12e0d319334f"
- ],
- "x-ms-arm-service-request-id": [
- "e1d03e34-8664-424d-a86f-05e4b3e36da1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030330Z:6394dbca-4e2c-4eee-921d-12e0d319334f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:29 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "61108f79-8aa7-4279-a65c-4e2db3e65b4c"
- ],
- "x-ms-correlation-request-id": [
- "6766e3ce-34f4-494e-9e8b-848a6af0fc06"
- ],
- "x-ms-arm-service-request-id": [
- "f2eb2ad7-5ece-4aaa-9647-9a9352e0efa0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030340Z:6766e3ce-34f4-494e-9e8b-848a6af0fc06"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:40 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "3b8ec13a-b506-41c0-af55-a18bea9a81d6"
- ],
- "x-ms-correlation-request-id": [
- "3732eeb5-95d3-421e-b986-6a3913d11712"
- ],
- "x-ms-arm-service-request-id": [
- "394c1f09-0586-473d-b94e-2ec31d677a18"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030350Z:3732eeb5-95d3-421e-b986-6a3913d11712"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:03:50 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6614b16e-39db-4819-ae9d-eb38516bdc30"
- ],
- "x-ms-correlation-request-id": [
- "fcdb7933-9d71-4771-b316-9949b1ea5d67"
- ],
- "x-ms-arm-service-request-id": [
- "5a8caf4a-13d2-44cd-bfc1-d688ec5d4a99"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030400Z:fcdb7933-9d71-4771-b316-9949b1ea5d67"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:04:00 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "0db61c84-1a43-4060-b0dc-2999d9babb67"
- ],
- "x-ms-correlation-request-id": [
- "19e91745-1d6e-492a-b3f4-400e2f47dedd"
- ],
- "x-ms-arm-service-request-id": [
- "46783113-2933-4a56-b8f9-8956fe84ce0c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030410Z:19e91745-1d6e-492a-b3f4-400e2f47dedd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:04:10 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "2b62aa7f-22fa-4cee-9c30-fbdd91d9b5ad"
- ],
- "x-ms-correlation-request-id": [
- "a32b6498-2d08-45be-a9f3-0185cbc0e4b0"
- ],
- "x-ms-arm-service-request-id": [
- "ee77c3db-318b-47b3-9bb2-7c08dac3e9fa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030420Z:a32b6498-2d08-45be-a9f3-0185cbc0e4b0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:04:20 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "acc21599-7331-4842-bfc6-663b944809f8"
- ],
- "x-ms-correlation-request-id": [
- "10a9fac9-dd11-4803-a272-4302ec95a3b2"
- ],
- "x-ms-arm-service-request-id": [
- "07fa1476-d995-4b37-81f3-6f3e27fa5c53"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030430Z:10a9fac9-dd11-4803-a272-4302ec95a3b2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:04:30 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "dcaebf91-7345-4dd8-9b7c-7bcf48136a2d"
- ],
- "x-ms-correlation-request-id": [
- "2273a49f-9d13-4421-8c75-0659ccd97173"
- ],
- "x-ms-arm-service-request-id": [
- "04bed146-423c-4f50-8e71-234461756367"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030440Z:2273a49f-9d13-4421-8c75-0659ccd97173"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:04:40 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6864fc4a-1eb2-482c-a3c2-bfd3ddf135fe"
- ],
- "x-ms-correlation-request-id": [
- "44a1c033-675f-4482-8a72-56faa2ef581b"
- ],
- "x-ms-arm-service-request-id": [
- "1106c424-c4bc-4de9-bde4-7b0c456d53c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030451Z:44a1c033-675f-4482-8a72-56faa2ef581b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:04:50 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "47776f87-8070-4517-bc7f-66cb22472783"
- ],
- "x-ms-correlation-request-id": [
- "38b18139-c754-47c8-abf1-0bc740cbdd52"
- ],
- "x-ms-arm-service-request-id": [
- "3195f0e2-cc80-4c74-b58d-ec8ed0a86362"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030501Z:38b18139-c754-47c8-abf1-0bc740cbdd52"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:05:00 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "ed42b36b-1a1d-4959-843e-707219231e8d"
- ],
- "x-ms-correlation-request-id": [
- "4f0a4e06-eb82-4639-b6d5-2a0ca7f12d4e"
- ],
- "x-ms-arm-service-request-id": [
- "7a05d80d-e8b4-4177-bf63-cafa85b0e896"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030511Z:4f0a4e06-eb82-4639-b6d5-2a0ca7f12d4e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:05:10 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6ea2b3b7-4161-4080-8ee8-81c3d6b698c4"
- ],
- "x-ms-correlation-request-id": [
- "85c6071d-c7d2-425a-a501-be1ece3ac578"
- ],
- "x-ms-arm-service-request-id": [
- "90f7bf67-91d8-477f-8504-7321d7065c5e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030521Z:85c6071d-c7d2-425a-a501-be1ece3ac578"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:05:20 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "de9f4560-4122-40c4-9148-f4295664e952"
- ],
- "x-ms-correlation-request-id": [
- "81aec99c-b046-4108-8df1-c49ea6117d44"
- ],
- "x-ms-arm-service-request-id": [
- "e5471131-3782-41cd-b5cc-d93e6842081b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030531Z:81aec99c-b046-4108-8df1-c49ea6117d44"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:05:30 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "1f532625-74e1-4cd3-8d63-fe64101b9911"
- ],
- "x-ms-correlation-request-id": [
- "22412311-c920-475e-a3fb-b1ef61695a8b"
- ],
- "x-ms-arm-service-request-id": [
- "0995addb-9d1e-4323-8649-7eae53461681"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030541Z:22412311-c920-475e-a3fb-b1ef61695a8b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:05:40 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "5e88314b-4e13-4447-8c97-d55515f87ab0"
- ],
- "x-ms-correlation-request-id": [
- "34a3e159-1b93-482d-bc9b-43794a0acdf4"
- ],
- "x-ms-arm-service-request-id": [
- "13e758d3-7ef4-41e4-8e18-8a7e80c9a3ab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030551Z:34a3e159-1b93-482d-bc9b-43794a0acdf4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:05:51 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "0f885b2d-01d4-4169-9615-f4442bb6382b"
- ],
- "x-ms-correlation-request-id": [
- "434e6a37-050c-4589-9d3d-3330f1407a5e"
- ],
- "x-ms-arm-service-request-id": [
- "fd01516b-118e-4563-8f6e-71de80f06fbf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030601Z:434e6a37-050c-4589-9d3d-3330f1407a5e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:06:01 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "0766ed56-2b13-4782-a79b-102541c3c05b"
- ],
- "x-ms-correlation-request-id": [
- "3f14046c-816b-4f22-9194-80054b5dec29"
- ],
- "x-ms-arm-service-request-id": [
- "48ccece8-9a14-42f9-8ac4-211fdf99c239"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030611Z:3f14046c-816b-4f22-9194-80054b5dec29"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:06:11 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "1d9f7531-879c-4f6f-90c7-048fef0f9a60"
- ],
- "x-ms-correlation-request-id": [
- "5d03ace3-85dd-4c64-8253-5de8033668a0"
- ],
- "x-ms-arm-service-request-id": [
- "dffdf353-7542-4171-ba15-4f6977ef4345"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030621Z:5d03ace3-85dd-4c64-8253-5de8033668a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:06:21 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "d423ab74-e9c9-4a12-aa0c-b0c734b242eb"
- ],
- "x-ms-correlation-request-id": [
- "65ca3715-487d-4168-934a-d1049c5d483d"
- ],
- "x-ms-arm-service-request-id": [
- "1fcf8d31-4b5c-4ebb-812e-f81666d4e0c8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030631Z:65ca3715-487d-4168-934a-d1049c5d483d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:06:31 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "2a806f84-bc36-433b-b490-702494d5e61c"
- ],
- "x-ms-correlation-request-id": [
- "1aac48e8-427d-481c-8f84-750dde495a70"
- ],
- "x-ms-arm-service-request-id": [
- "36e832f5-4fed-4b2f-8684-1db72ac17762"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030642Z:1aac48e8-427d-481c-8f84-750dde495a70"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:06:41 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "663e3c26-1445-4701-867a-53172fc18b3c"
- ],
- "x-ms-correlation-request-id": [
- "406d6675-6615-4151-bf8e-c6afa33591c2"
- ],
- "x-ms-arm-service-request-id": [
- "619b517c-11b0-455f-bccd-d8aeab034108"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030652Z:406d6675-6615-4151-bf8e-c6afa33591c2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:06:51 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "7a75a4eb-d2ef-4e7e-aebc-a701a7b73f8d"
- ],
- "x-ms-correlation-request-id": [
- "9b176b0e-d841-4226-808e-eff1b83d9022"
- ],
- "x-ms-arm-service-request-id": [
- "83987985-9dbc-4938-9e67-ae5a706aa74a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030702Z:9b176b0e-d841-4226-808e-eff1b83d9022"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:07:02 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "f0da7d31-b155-4948-a36a-5603ad5b7f71"
- ],
- "x-ms-correlation-request-id": [
- "4ad3c61b-dd4d-4838-bac4-f1f1ff003748"
- ],
- "x-ms-arm-service-request-id": [
- "bbf017cf-c10d-4a92-b8e5-ee7ed83814fa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030712Z:4ad3c61b-dd4d-4838-bac4-f1f1ff003748"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:07:12 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "36145ea4-2c82-45a5-8e8a-68433ec5dc97"
- ],
- "x-ms-correlation-request-id": [
- "b05699cd-1020-4484-b9b7-5a8b28cd5b99"
- ],
- "x-ms-arm-service-request-id": [
- "14402bcf-40c1-4525-99a5-52ac5611d28e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030722Z:b05699cd-1020-4484-b9b7-5a8b28cd5b99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:07:22 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "3df997ab-016d-4c1b-ba5e-38d6b70895fa"
- ],
- "x-ms-correlation-request-id": [
- "7633972e-e15f-4a70-829c-6807120d1245"
- ],
- "x-ms-arm-service-request-id": [
- "d53d9267-7635-4ae1-97bc-57e7c240e848"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030732Z:7633972e-e15f-4a70-829c-6807120d1245"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:07:32 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "89e19c83-e0ec-4fc4-a6da-660fa9987dbb"
- ],
- "x-ms-correlation-request-id": [
- "5163e990-a589-46dd-a2cc-93f34a111f35"
- ],
- "x-ms-arm-service-request-id": [
- "8550e355-34c8-414c-a975-ed0ecc1b016f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030742Z:5163e990-a589-46dd-a2cc-93f34a111f35"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:07:42 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "17a62b7d-36ef-498b-a075-06cc9be17e09"
- ],
- "x-ms-correlation-request-id": [
- "05205853-245b-4da7-a47b-d26dcc05a9e7"
- ],
- "x-ms-arm-service-request-id": [
- "725b09bb-4efa-437a-8a0b-092f611a03c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030752Z:05205853-245b-4da7-a47b-d26dcc05a9e7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:07:52 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "082a3b07-9198-4464-ac7f-4c2ac970f076"
- ],
- "x-ms-correlation-request-id": [
- "e438320b-3dca-4c4c-8201-5d3c6585bad9"
- ],
- "x-ms-arm-service-request-id": [
- "cd8d495a-07f8-4600-8595-11c664c61576"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030802Z:e438320b-3dca-4c4c-8201-5d3c6585bad9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:08:02 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "0415fb5e-056d-4dd5-ac5c-ffe074647d4f"
- ],
- "x-ms-correlation-request-id": [
- "732b8dc1-cbd8-47bb-b154-3e8c9c09a9e4"
- ],
- "x-ms-arm-service-request-id": [
- "562e17aa-30c3-4b06-8cd2-7ed2c61902bd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030812Z:732b8dc1-cbd8-47bb-b154-3e8c9c09a9e4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:08:12 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "02630467-d677-4157-a9a4-052e7d488948"
- ],
- "x-ms-correlation-request-id": [
- "1fcf3ab1-2296-490e-a2b1-0ed5990866f9"
- ],
- "x-ms-arm-service-request-id": [
- "8aa5a424-4fd7-4491-b577-09672850144c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030822Z:1fcf3ab1-2296-490e-a2b1-0ed5990866f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:08:22 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "cd935f27-393d-421e-8442-84662a19a645"
- ],
- "x-ms-correlation-request-id": [
- "71223b93-cd73-4ee6-8fab-d4681739bec4"
- ],
- "x-ms-arm-service-request-id": [
- "6d89211d-de3e-4cb6-9427-9bd4cb7fcedc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030832Z:71223b93-cd73-4ee6-8fab-d4681739bec4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:08:32 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "93c0625e-b961-4616-830d-1b50590629b7"
- ],
- "x-ms-correlation-request-id": [
- "19ddc4ad-ce84-4122-bbf3-4264bdc86a35"
- ],
- "x-ms-arm-service-request-id": [
- "733fb22a-1767-4c14-987b-be5a9ade7a8e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030843Z:19ddc4ad-ce84-4122-bbf3-4264bdc86a35"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:08:42 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "b1553ed0-ee88-48bd-b934-6d7241044df6"
- ],
- "x-ms-correlation-request-id": [
- "67a26e70-9aa8-43c2-8d99-e159353887fb"
- ],
- "x-ms-arm-service-request-id": [
- "4f17a96d-a920-47e6-b8d3-6e67ff03abc9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030853Z:67a26e70-9aa8-43c2-8d99-e159353887fb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:08:53 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "31d26aaa-be69-4e36-be5a-296d0d5f3475"
- ],
- "x-ms-correlation-request-id": [
- "fb7d1d26-2f6a-43e5-9893-687534067a8d"
- ],
- "x-ms-arm-service-request-id": [
- "33bd0444-a1ad-45c3-a468-54697ddd79ac"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030903Z:fb7d1d26-2f6a-43e5-9893-687534067a8d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:09:03 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "608d8ad7-a925-47d1-9516-393d5989a2fe"
- ],
- "x-ms-correlation-request-id": [
- "fe85bb1b-a165-427b-a381-652ba82f3f5b"
- ],
- "x-ms-arm-service-request-id": [
- "3bc42cf2-ce4c-4644-853e-7f86263519f8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030913Z:fe85bb1b-a165-427b-a381-652ba82f3f5b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:09:12 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "04b6033e-769d-486e-86e1-3d850253bc24"
- ],
- "x-ms-correlation-request-id": [
- "35944af7-92d9-4982-bf12-42ef3fbe338b"
- ],
- "x-ms-arm-service-request-id": [
- "840594d6-e147-4368-a62b-d733ded24dc6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030923Z:35944af7-92d9-4982-bf12-42ef3fbe338b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:09:22 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "4cffd110-757e-4ec6-ae57-6b5bc7af9e2d"
- ],
- "x-ms-correlation-request-id": [
- "fbcef404-ee9f-4ef8-ad73-b82b76786101"
- ],
- "x-ms-arm-service-request-id": [
- "103a917e-0eb5-42ad-9cfd-3caee381ebf0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030933Z:fbcef404-ee9f-4ef8-ad73-b82b76786101"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:09:32 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/cfc3ab48-f5ff-4a38-a616-09b9dd24e03a?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NmYzNhYjQ4LWY1ZmYtNGEzOC1hNjE2LTA5YjlkZDI0ZTAzYT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "d290be9c-d04c-4221-b385-53887079c7ee"
- ],
- "x-ms-correlation-request-id": [
- "ea62788b-9df0-4e16-ba13-2f8fec962613"
- ],
- "x-ms-arm-service-request-id": [
- "01cb8527-aaf7-4cbc-9fbd-ffb277f23f18"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030943Z:ea62788b-9df0-4e16-ba13-2f8fec962613"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:09:42 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "ab899069-992c-458b-aca9-8319e095b2d9"
- ],
- "x-ms-correlation-request-id": [
- "03227304-975d-4a40-8645-0aa7af9048f6"
- ],
- "x-ms-arm-service-request-id": [
- "9b1550c3-c620-43da-bb44-b1f42d28a824"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T030955Z:03227304-975d-4a40-8645-0aa7af9048f6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:09:54 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "02c229f9-d59b-4280-b403-40d8c3f704f3"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b4332e36-2901-4548-b7d4-7094a9f0b4df"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "1bb45421-7bc3-451a-946c-62fd98bdc051"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -34759,16 +16138,16 @@
"11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031005Z:b4332e36-2901-4548-b7d4-7094a9f0b4df"
+ "WESTUS:20200826T114623Z:1d8fc1e9-e15c-402f-b744-5378c11cfd75"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:10:04 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -34777,20 +16156,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -34800,17 +16179,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "85dc069e-de45-4431-8672-cdf2cbb6f03e"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "63a7d451-0672-4144-9fa6-28f1de7c947f"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "cf85bb47-e769-40b5-ba8a-6c2b658b7d6e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -34823,16 +16208,16 @@
"11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031015Z:63a7d451-0672-4144-9fa6-28f1de7c947f"
+ "WESTUS:20200826T114623Z:7c3fce16-2b86-4fe1-95a7-81caf4665676"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:10:14 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -34841,20 +16226,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -34864,17 +16249,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9296964a-9a93-4b08-8e77-6434a40b4db3"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "3370dcc1-1891-408f-8a09-eacbee4c048e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "8bcdfc7f-8222-48a4-9b24-a34e7aa5bde2"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -34887,16 +16278,16 @@
"11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031025Z:3370dcc1-1891-408f-8a09-eacbee4c048e"
+ "WESTUS:20200826T114623Z:df28e140-042d-4d79-8569-f5d21f0bc8a9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:10:24 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -34905,20 +16296,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -34928,17 +16319,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "1204c801-51ba-49ed-9335-0e0c728a1a6b"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4b4da678-ff6c-4500-835b-8873b765e3db"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "9d32e76d-ee15-4ca3-97b8-7d5ebecec5d3"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -34951,16 +16348,16 @@
"11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031035Z:4b4da678-ff6c-4500-835b-8873b765e3db"
+ "WESTUS:20200826T114623Z:f52ca553-282e-42f5-b7c7-a5b28cadd780"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:10:34 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -34969,20 +16366,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -34992,17 +16389,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2d21185d-d8ff-4b4d-874b-f616e1d7dac6"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "8b6c0f9b-2d47-4807-ab71-d5b0418cff50"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "fa876511-eee9-4ddd-8793-f4faeec56fee"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35015,16 +16418,16 @@
"11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031045Z:8b6c0f9b-2d47-4807-ab71-d5b0418cff50"
+ "WESTUS:20200826T114623Z:866d2cd0-f396-436d-92d9-6a20e537375a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:10:45 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35033,20 +16436,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35056,17 +16459,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "8adc0b66-a7d1-4f81-96c9-2c04ec6c9b3e"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "fb545820-32dc-406a-850f-1fe6763afcda"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "99c1cd37-7801-4f20-a91e-9f0a23defb87"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35079,16 +16488,16 @@
"11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031055Z:fb545820-32dc-406a-850f-1fe6763afcda"
+ "WESTUS:20200826T114623Z:4190834d-2758-40b7-8e01-4aaed162266b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:10:55 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35097,20 +16506,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35120,17 +16529,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "6b4fd4f1-364c-4e8a-8350-1fbbf35f8450"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "933107cb-0d2c-467c-b924-a67475974d31"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "17128f24-442f-44d8-90de-f0738af37110"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35143,16 +16558,16 @@
"11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031105Z:933107cb-0d2c-467c-b924-a67475974d31"
+ "WESTUS:20200826T114623Z:d9337659-c3d2-4026-8c59-23ab217304bc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:11:05 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35161,20 +16576,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35184,17 +16599,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "7bf3d305-84f9-44f0-b7cc-8fc8fe065f18"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6d49042e-5867-481a-8b28-92fb7ada3351"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "9ed03e2a-c7d7-4308-bffb-a87572d5c10e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35207,16 +16628,16 @@
"11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031115Z:6d49042e-5867-481a-8b28-92fb7ada3351"
+ "WESTUS:20200826T114623Z:4cba4dee-0b47-41c0-a3e3-b64078e85e15"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:11:15 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35225,20 +16646,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35248,17 +16669,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "90f9efce-1b6d-4028-9424-3dd0a34f90f4"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e26e6f95-6dd7-466c-8cd0-11735106d983"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "9ab40783-1550-46b2-b96e-6a73bcff8b41"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35271,16 +16698,16 @@
"11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031125Z:e26e6f95-6dd7-466c-8cd0-11735106d983"
+ "WESTUS:20200826T114624Z:82cabcdd-5eb9-45da-8ee7-f7ad4c01b551"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:11:25 GMT"
+ "Wed, 26 Aug 2020 11:46:23 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35289,20 +16716,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35312,17 +16739,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a7ec5003-9770-4834-a3db-88e7ea586a30"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "bc367049-c86c-4b51-bad2-0168f8b5ab35"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "89f0fe74-061e-419b-b53a-3fdd5ecf6b50"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35335,16 +16768,16 @@
"11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031135Z:bc367049-c86c-4b51-bad2-0168f8b5ab35"
+ "WESTUS:20200826T114624Z:cdf20390-5b35-4974-a9db-6dc21dff1ed2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:11:35 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35353,20 +16786,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35376,17 +16809,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4cc9b12f-5168-4893-b409-5831b9927e6f"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4965b308-9027-4186-b7f4-5d8f240e182c"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "76f78a4b-99cb-4850-bba5-93a19e6f1fa4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35399,16 +16838,16 @@
"11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031145Z:4965b308-9027-4186-b7f4-5d8f240e182c"
+ "WESTUS:20200826T114624Z:b410666c-58ee-4e3b-a729-e9fd845ced49"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:11:45 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35417,20 +16856,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35440,17 +16879,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "08ff1c33-f4c7-46b5-a8e4-8ab4f124a184"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "06aa89d0-bec2-41c7-8e3b-1f7b99d7b205"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "f48b2f79-f52f-487d-a688-dda3218245da"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35463,16 +16908,16 @@
"11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031155Z:06aa89d0-bec2-41c7-8e3b-1f7b99d7b205"
+ "WESTUS:20200826T114624Z:17a7c624-32cb-4ccc-ad56-c8174772a6eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:11:55 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35481,20 +16926,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35504,17 +16949,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e5817fde-c4bc-453a-ac4d-2a52027ae183"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "985d0e53-cad5-4f9b-8cba-c804afc3284a"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "0862f8c8-4957-4814-9503-dbaade061e6d"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35527,16 +16978,16 @@
"11985"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031206Z:985d0e53-cad5-4f9b-8cba-c804afc3284a"
+ "WESTUS:20200826T114624Z:fefb0599-c1f6-47d6-b620-44cd9ca2af4d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:12:05 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35545,20 +16996,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35568,17 +17019,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "3f2e6274-a66a-4487-9f38-043c2254862f"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "619ecd8b-798b-4f69-9c9f-2a3f0b65abac"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "b047f62e-d8d6-4e6d-a2e9-470dda9665de"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35591,16 +17048,16 @@
"11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031216Z:619ecd8b-798b-4f69-9c9f-2a3f0b65abac"
+ "WESTUS:20200826T114624Z:52e3911d-ff86-4564-ae4b-33ec4321d3a7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:12:15 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35609,20 +17066,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35632,17 +17089,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "75bff91d-27b4-42f3-8ecb-bc2ceaa77ecc"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "df9a0e99-7611-422b-a728-51424fa609c8"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "93a8c62e-2bc0-40ed-9d73-691fc0f7967b"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35655,16 +17118,16 @@
"11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031226Z:df9a0e99-7611-422b-a728-51424fa609c8"
+ "WESTUS:20200826T114624Z:9de69e90-f167-48b8-bb12-4c201d76fe5b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:12:25 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35673,20 +17136,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35696,17 +17159,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "10708556-0633-448f-b062-4cbde90e91cb"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9805df29-5602-46a9-b8a4-b6bf8d2042b0"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "0a6a6b56-d885-42a0-8529-f916e2e0bd21"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35719,16 +17188,16 @@
"11982"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031236Z:9805df29-5602-46a9-b8a4-b6bf8d2042b0"
+ "WESTUS:20200826T114624Z:275438ae-6cf0-4eac-bbd6-68a87f82dfb7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:12:36 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35737,20 +17206,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35760,17 +17229,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e816d321-153d-408e-8464-256d25569c8c"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ba70987d-e510-4c89-b9c0-9ebcb22af652"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "1e51604e-05b0-408f-9e96-3158bc8ed919"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35783,16 +17258,16 @@
"11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031246Z:ba70987d-e510-4c89-b9c0-9ebcb22af652"
+ "WESTUS:20200826T114624Z:4fe9eb65-b1de-4f47-93a2-aad80959de63"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:12:46 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35801,20 +17276,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35824,17 +17299,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4e4749d9-c8b3-45e9-a004-91aee38f91a9"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6d15263a-e5c0-444f-a69c-e9534bc89b93"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "3e95004f-1100-417d-9982-3779227869eb"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35847,16 +17328,16 @@
"11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031256Z:6d15263a-e5c0-444f-a69c-e9534bc89b93"
+ "WESTUS:20200826T114624Z:bdfd8993-530d-409d-881a-7d90eb3d2e3f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:12:56 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35865,20 +17346,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35888,17 +17369,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "fc44b048-386e-45f6-8a2d-b3b4269e425e"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e5de65d4-81d3-4ebc-b086-2dd581bb368e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "211f42e2-e4af-42bf-8861-c66d811fcaa0"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35911,16 +17398,16 @@
"11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031306Z:e5de65d4-81d3-4ebc-b086-2dd581bb368e"
+ "WESTUS:20200826T114624Z:e682004b-6028-4fe3-98f3-b3301f760086"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:13:06 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35929,20 +17416,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -35952,17 +17439,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "22064044-2547-4e7a-a242-03482220d752"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6171ce0f-f636-46b5-a677-94f396586ebb"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "d1efb7e4-7c76-4dc8-8376-6aae087fdf41"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -35975,16 +17468,16 @@
"11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031316Z:6171ce0f-f636-46b5-a677-94f396586ebb"
+ "WESTUS:20200826T114624Z:e6978b3b-07fa-46cc-8596-4cefa570c0d4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:13:16 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -35993,20 +17486,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36016,17 +17509,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c6e46ec8-f08f-4e04-ad7d-667e46124f1e"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "180cf4b7-73c7-4ac3-9e17-ebdf8800b730"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "869bf414-c9f1-44fb-95cc-5b89b30b74e3"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36039,16 +17538,16 @@
"11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031326Z:180cf4b7-73c7-4ac3-9e17-ebdf8800b730"
+ "WESTUS:20200826T114624Z:7705b055-c5c5-4a80-9931-25a030f1b074"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:13:26 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36057,20 +17556,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36080,17 +17579,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "eb960b5f-9038-4995-9b5f-2f5ed10a24f0"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e0394be7-7221-4eca-a6f3-51269964e9ea"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "8e6a1c34-185c-4114-9436-b12fcd78f6c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36103,16 +17608,16 @@
"11976"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031336Z:e0394be7-7221-4eca-a6f3-51269964e9ea"
+ "WESTUS:20200826T114624Z:ff100ebe-96b8-42ce-aeb7-fd3f5b8a9acc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:13:36 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36121,20 +17626,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36144,17 +17649,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "51184288-67bd-4a99-ab1e-a5adc4533217"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "353962f4-684b-4bbd-8784-78ece99b0c06"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "0d1b1b9a-af83-44b3-9a1b-3cd6bccf8b11"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36167,16 +17678,16 @@
"11975"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031346Z:353962f4-684b-4bbd-8784-78ece99b0c06"
+ "WESTUS:20200826T114625Z:9c4cfe2b-106b-44fc-963f-2c738f6c16cd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:13:46 GMT"
+ "Wed, 26 Aug 2020 11:46:24 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36185,20 +17696,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36208,17 +17719,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4b86c99b-e7f1-4e36-bd36-63bfae3425e7"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "409f4e96-9758-4f4d-b700-3f78a72acb2c"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "4b024585-b565-4825-becf-d5fa132cfb10"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36231,16 +17748,16 @@
"11974"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031356Z:409f4e96-9758-4f4d-b700-3f78a72acb2c"
+ "WESTUS:20200826T114625Z:bd3adc5e-c5a3-4f33-9f22-a412523ef12c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:13:55 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36249,20 +17766,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36272,39 +17789,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c6edab89-8fbe-428c-8836-18d7da4c2bfa"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "17f3b99a-ae05-4a48-99c8-c872b00a7fc9"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "cd6d726f-240e-49c9-88cd-b608d9d5993b"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031406Z:17f3b99a-ae05-4a48-99c8-c872b00a7fc9"
+ "WESTUS:20200826T114625Z:f6a71e40-ca96-4d28-81fc-7367512fb64f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:14:05 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36313,20 +17836,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36336,17 +17859,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "203f4adc-0476-4fab-b75e-6bff302fc904"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f64e16ed-9625-4fd4-9050-0cdea8f1071f"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "f5a25d34-1608-4580-aa5a-d1f90bceb32c"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36359,16 +17888,16 @@
"11972"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031417Z:f64e16ed-9625-4fd4-9050-0cdea8f1071f"
+ "WESTUS:20200826T114625Z:d4148168-0460-4218-952a-c39850f9b653"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:14:17 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36377,20 +17906,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36400,17 +17929,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "bf4fd9c5-a644-4a7d-87e2-4a9e57a4ccd2"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b8838d80-9d5d-4583-9a7c-a2863385225e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "1da1b383-0b3d-4884-a6e5-a9cfeb948e17"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36423,16 +17958,16 @@
"11971"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031427Z:b8838d80-9d5d-4583-9a7c-a2863385225e"
+ "WESTUS:20200826T114625Z:13ff60a7-2017-4c82-8747-34a16685bcd8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:14:27 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36441,20 +17976,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36464,145 +17999,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6f358431-624d-4dc4-ab8d-60c6bc970bcf"
- ],
- "x-ms-correlation-request-id": [
- "a0558865-7ba7-49a0-9d3a-ef4469d739fd"
- ],
- "x-ms-arm-service-request-id": [
- "5d1abe9d-8c00-4a8f-8d63-f948641d09fd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031437Z:a0558865-7ba7-49a0-9d3a-ef4469d739fd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:14:37 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "392accb3-130a-4406-80c0-27b498fff9b3"
- ],
- "x-ms-correlation-request-id": [
- "780c80af-8005-40ff-93b0-68382720cda8"
- ],
- "x-ms-arm-service-request-id": [
- "dd11a844-5db1-4160-a453-6905be809843"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031447Z:780c80af-8005-40ff-93b0-68382720cda8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:14:47 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
- "x-ms-request-id": [
- "86c2265a-158c-4f94-87c4-b03709178045"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "cd9e3027-63b9-4060-836e-950dd88fb946"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "a82176dd-a972-4c6f-b161-1914d15a280e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36612,19 +18025,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11970"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031457Z:cd9e3027-63b9-4060-836e-950dd88fb946"
+ "WESTUS:20200826T114625Z:e69ab2ff-1249-446b-8b5e-0e159793009f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:14:57 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36633,20 +18046,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36656,145 +18069,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "615121a9-18ae-407f-81a3-7f65e08626a8"
- ],
- "x-ms-correlation-request-id": [
- "e7248e0a-9c9b-4f51-82a5-156e3196e70e"
- ],
- "x-ms-arm-service-request-id": [
- "2e9dfb4a-f4a1-4e7b-89dc-d8f431309bdc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031507Z:e7248e0a-9c9b-4f51-82a5-156e3196e70e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:15:06 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a520e959-7b2d-4754-971d-dbff12ada2a7"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
- "x-ms-correlation-request-id": [
- "5bd950cb-cb16-4f09-8c78-e64ebc96b822"
- ],
- "x-ms-arm-service-request-id": [
- "e661bead-2120-4958-b4e3-1d5ba75e9b88"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031517Z:5bd950cb-cb16-4f09-8c78-e64ebc96b822"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:15:16 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "f1612454-db2a-4c8c-85cc-bff426a15c39"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b33099ee-5184-417a-8a99-3852ebe05241"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "af5a3bd8-d876-4efc-a086-f627b47a2746"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36804,19 +18095,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11969"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031527Z:b33099ee-5184-417a-8a99-3852ebe05241"
+ "WESTUS:20200826T114625Z:5bd6d86b-9c44-4026-a439-a19f3fc32eab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:15:27 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36825,20 +18116,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -36848,145 +18139,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "acf9e187-5e93-4f58-bc55-712ed2778b28"
- ],
- "x-ms-correlation-request-id": [
- "2c405002-3f3f-4083-b90d-d257019f42dc"
- ],
- "x-ms-arm-service-request-id": [
- "adbae82a-f84d-48d1-82eb-d6131e546257"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031537Z:2c405002-3f3f-4083-b90d-d257019f42dc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:15:37 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "44cbae33-4d60-4de3-a542-81a38717d599"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
- "x-ms-correlation-request-id": [
- "ebce111e-e4b4-404f-a714-3a65761cbbfa"
- ],
- "x-ms-arm-service-request-id": [
- "0a30803a-a585-432d-83b7-915c10759640"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031547Z:ebce111e-e4b4-404f-a714-3a65761cbbfa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:15:47 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "ab0e4e22-142c-4362-bd82-b398534aa1f3"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "065dce4b-9665-432c-82d7-773eb7b8edf4"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "42a7f399-716e-4076-8bf8-03f0573b47f0"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36996,19 +18165,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11968"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031557Z:065dce4b-9665-432c-82d7-773eb7b8edf4"
+ "WESTUS:20200826T114625Z:24957738-37a1-41c4-8a83-a35bf259f4fb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:15:57 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -37017,20 +18186,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37040,78 +18209,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4fd59bc8-f415-4e22-9aab-8120a31cd1d2"
- ],
- "x-ms-correlation-request-id": [
- "cd8dff13-0f11-486f-a7bf-a149f1c40328"
- ],
- "x-ms-arm-service-request-id": [
- "95e8f202-a218-4bab-914d-6f1d996cc509"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T031608Z:cd8dff13-0f11-486f-a7bf-a149f1c40328"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:16:07 GMT"
- ],
- "Content-Length": [
- "30"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/37459442-ae44-4901-a69d-d1cdb5d96316?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM3NDU5NDQyLWFlNDQtNDkwMS1hNjlkLWQxY2RiNWQ5NjMxNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "4d10ddb3-7c25-4189-bef1-d6f45449928f"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "8a125f93-5622-4925-99bd-fea7532ffc0e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "7c7e2225-2724-4101-bc50-c1fe11e5c1a7"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37121,19 +18235,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11967"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031618Z:8a125f93-5622-4925-99bd-fea7532ffc0e"
+ "WESTUS:20200826T114625Z:6e8f31de-4002-46ae-8144-bcb588cc9f4c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:17 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
- "29"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -37142,20 +18256,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37166,22 +18280,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37191,16 +18305,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11966"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:b3773b50-90fe-468d-ad58-7a1c1eff4f8d"
+ "WESTUS:20200826T114625Z:186faeab-451c-4a34-b102-0bfba39dd1d9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37216,16 +18330,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37236,22 +18350,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37261,16 +18375,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11965"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:1011c6fd-d2dc-4f5e-99ec-7853a00bc61e"
+ "WESTUS:20200826T114625Z:7287ba2e-08ee-40c7-a4a8-086a13723274"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37286,16 +18400,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37306,22 +18420,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37331,16 +18445,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11964"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:60e9820c-3d9d-42c6-8f22-d8d58b4a5a89"
+ "WESTUS:20200826T114625Z:9ff1a1e2-832e-4229-83a9-2542bfce8801"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37356,16 +18470,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37376,22 +18490,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37401,16 +18515,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11963"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:bcf4ceeb-39d6-4ec1-85fd-d2afee2dc8e2"
+ "WESTUS:20200826T114625Z:c671793b-2a65-4ede-a9cc-ee39128cbbce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37426,16 +18540,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37446,22 +18560,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37471,16 +18585,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11962"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:bf047504-eebd-40b0-849d-d4d19cca6d7f"
+ "WESTUS:20200826T114625Z:290b5d52-d947-48d1-a22d-3c76f4c64f59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37496,16 +18610,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37516,22 +18630,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37541,16 +18655,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11961"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:975e2c59-a307-46fd-852b-9c153a954edb"
+ "WESTUS:20200826T114625Z:d1126aab-d039-4811-8371-bc07bffec055"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37566,16 +18680,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37586,22 +18700,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37611,16 +18725,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11960"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:2763c9d4-ba9c-4599-b177-5879cb33ad17"
+ "WESTUS:20200826T114626Z:8e24f079-494d-4e8c-9185-fe3358f6ef71"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:25 GMT"
],
"Content-Length": [
"4"
@@ -37636,16 +18750,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37656,22 +18770,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37681,16 +18795,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11959"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:f9d515bd-f406-43c5-b3ab-9a348ba62336"
+ "WESTUS:20200826T114626Z:47bd5662-1405-4c8f-8f88-2f1e7ff23eba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -37706,16 +18820,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37726,22 +18840,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37751,16 +18865,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11958"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:a00539e8-5c1a-48a1-9e5f-a18effad31e8"
+ "WESTUS:20200826T114626Z:fb784248-470f-47de-a9a6-b49b3e72aaff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -37776,16 +18890,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37796,22 +18910,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37821,16 +18935,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11957"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:2c3b8a64-b856-4ae3-95fd-e6c570492e02"
+ "WESTUS:20200826T114626Z:54d19837-6daa-4ae2-9f7b-1552659c381e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -37846,16 +18960,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37866,22 +18980,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37891,16 +19005,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11956"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:42569b23-7206-42ac-86de-7593d7cce3cc"
+ "WESTUS:20200826T114626Z:0ccda4ad-2558-46d9-a980-7e099af9d487"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -37916,16 +19030,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -37936,22 +19050,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -37961,16 +19075,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11955"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:3fe97dae-131f-44bd-bdaa-ade0fde048c0"
+ "WESTUS:20200826T114626Z:a1bee1a0-2096-4544-87ce-7e89f98bb7e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:18 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -37986,16 +19100,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38006,22 +19120,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38031,16 +19145,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11954"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031619Z:047927a8-3155-40d2-9b94-8bdcf9cd78bb"
+ "WESTUS:20200826T114626Z:7cc3fdb4-50c8-479c-9919-afb61803a84e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38056,16 +19170,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38076,22 +19190,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38101,16 +19215,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11953"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:ef4eb143-97c7-4176-90c0-648447d93feb"
+ "WESTUS:20200826T114626Z:b60efaee-535c-4edd-a504-619ac3d80366"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38126,16 +19240,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38146,22 +19260,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38171,16 +19285,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11952"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:8d8b933a-0baf-4844-8fa9-9f8712fca0eb"
+ "WESTUS:20200826T114626Z:41e63eb9-f294-4043-8fb5-bf1bfef16483"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38196,16 +19310,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38216,22 +19330,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38241,16 +19355,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11951"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:81e90c6c-e14d-4329-90c0-aebb74353025"
+ "WESTUS:20200826T114626Z:6ecdde30-5d22-42e5-a0bb-2d620fb115fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38266,16 +19380,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38286,22 +19400,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38311,16 +19425,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11950"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:3494295f-c515-4735-8891-2390dbbbe27f"
+ "WESTUS:20200826T114626Z:0123f7ae-3844-4671-82b0-9d21b7463806"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38336,16 +19450,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38356,22 +19470,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38381,16 +19495,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11949"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:4c44c534-fbf7-4a27-ae56-0a7a8d1ac678"
+ "WESTUS:20200826T114626Z:bd1cc028-8306-4733-947a-c82f5347c75f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38406,16 +19520,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38426,22 +19540,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38451,16 +19565,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11948"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:5377aa94-8f14-43f6-8600-01ff5ceb6346"
+ "WESTUS:20200826T114626Z:306eaeae-20e1-4f50-82cb-40b597d0904a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38476,16 +19590,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38496,22 +19610,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38521,16 +19635,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11947"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:2ed7a205-09ce-4b56-b409-4c13998ca654"
+ "WESTUS:20200826T114626Z:9005e27c-ee2d-4969-b283-2050bd87670a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38546,16 +19660,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38566,22 +19680,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38591,16 +19705,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11946"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:1bc46f82-bd6f-47be-b70c-4fd161dc67db"
+ "WESTUS:20200826T114626Z:c5bd5efd-a567-4d9d-96b1-f31b7bbb23a4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38616,16 +19730,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38636,22 +19750,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38661,16 +19775,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11945"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:a9965252-3185-42f7-b788-908cb15ab6ec"
+ "WESTUS:20200826T114627Z:64530d65-3cd5-4292-bf5b-a7922ec24f8d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:26 GMT"
],
"Content-Length": [
"4"
@@ -38686,16 +19800,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38706,22 +19820,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38731,16 +19845,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11944"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:33d132a7-0868-4805-bd7f-b99711804a2f"
+ "WESTUS:20200826T114627Z:c8fce6fc-64d3-40a4-9eae-e32515844e06"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
"4"
@@ -38756,16 +19870,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38776,22 +19890,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38801,16 +19915,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11943"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:e6a64e52-885f-44c3-ba66-8c24911425d2"
+ "WESTUS:20200826T114627Z:f0125870-d158-48ed-aa45-1fe865040def"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
"4"
@@ -38826,16 +19940,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38846,22 +19960,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38871,16 +19985,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11942"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:520a455b-c493-4dd5-9c58-33b82df71caf"
+ "WESTUS:20200826T114627Z:e5365376-127b-437a-a6ba-42bf196e59aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
"4"
@@ -38896,16 +20010,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38916,22 +20030,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -38941,16 +20055,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11941"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031620Z:16281dab-3f23-4aea-8af8-421409a133bf"
+ "WESTUS:20200826T114627Z:d4bfd380-7514-451b-ad36-6277a2c8c6d3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:19 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
"4"
@@ -38966,16 +20080,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVkNWVmZDljLTkwMzctNDNmNi1hOTdlLWFlNzU4NTMzM2Q5ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -38986,16 +20100,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/5d5efd9c-9037-43f6-a97e-ae7585333d94?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
],
"x-ms-request-id": [
- "5d5efd9c-9037-43f6-a97e-ae7585333d94"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2b42092b-e434-46ae-b85e-f767c330504e"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "27871935-e47d-4b11-a824-3a85b27acb0e"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39005,19 +20125,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11940"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031621Z:0693ac1c-764c-470c-af95-854080f7ae4a"
+ "WESTUS:20200826T114627Z:4b726f8f-35c7-4cdd-ac6c-f97fcf0337bb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:20 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
- "191"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -39026,26 +20146,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"vpnServerConfigurationResourceIds\": [\r\n \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203\"\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps97?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM5Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "51873807-6baa-41f3-ad27-f5786ada443f"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39056,25 +20170,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/e25b2616-09b1-4b04-9f97-23c398aaede7?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e25b2616-09b1-4b04-9f97-23c398aaede7"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e25b2616-09b1-4b04-9f97-23c398aaede7?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f2ffbae9-f038-4ded-ab06-ab035a3569f7"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "cd2d4d21-572c-4017-be46-78f911713c5c"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39083,39 +20194,42 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031621Z:f2ffbae9-f038-4ded-ab06-ab035a3569f7"
+ "WESTUS:20200826T114627Z:0ea32bdc-0e0f-421c-b946-1051a8a133dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:20 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "null",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e25b2616-09b1-4b04-9f97-23c398aaede7?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2UyNWIyNjE2LTA5YjEtNGIwNC05Zjk3LTIzYzM5OGFhZWRlNz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39125,14 +20239,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "98524685-7ffa-4834-95e4-ed094c9272ed"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "6ba0b879-2ea3-4610-866d-01dad40fcbee"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "a218b45d-5e5b-4ddb-86dd-0d9b23e5b033"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39142,19 +20265,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11938"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031631Z:6ba0b879-2ea3-4610-866d-01dad40fcbee"
+ "WESTUS:20200826T114627Z:461f885a-9984-4635-8d10-405c26a402d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:30 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
- "29"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -39163,20 +20286,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/e25b2616-09b1-4b04-9f97-23c398aaede7?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2UyNWIyNjE2LTA5YjEtNGIwNC05Zjk3LTIzYzM5OGFhZWRlNz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39187,22 +20310,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/e25b2616-09b1-4b04-9f97-23c398aaede7?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
],
"x-ms-request-id": [
- "e25b2616-09b1-4b04-9f97-23c398aaede7"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e25b2616-09b1-4b04-9f97-23c398aaede7?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f2ffbae9-f038-4ded-ab06-ab035a3569f7"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "cd2d4d21-572c-4017-be46-78f911713c5c"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39212,16 +20335,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11937"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031631Z:c9c63fae-edd5-4457-9376-c2a0405ed344"
+ "WESTUS:20200826T114627Z:71a0182d-dc0f-4d4b-a96e-11ca3a5bc178"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:30 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
+ ],
+ "Content-Length": [
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -39230,32 +20356,20 @@
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"blobps7860\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "e250056f-0749-40d6-a250-9661805c0559"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "76"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39265,66 +20379,67 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "ad9a9b94-dd75-4779-8d82-b26b577c9bc1"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-correlation-request-id": [
- "691dc18c-ac75-49cb-bbfd-83205fea0df6"
+ "11936"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031632Z:691dc18c-ac75-49cb-bbfd-83205fea0df6"
+ "WESTUS:20200826T114627Z:7a3989c2-f035-41d6-9451-d504a0eaf388"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:31 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
- "22"
+ "4"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Storage/storageAccounts/blobps7860?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2Jsb2Jwczc4NjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "f64eea78-c4ef-49ab-b87e-4a32c5b39ebf"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "107"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39335,59 +20450,66 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/6f45e73c-a3bd-4f14-97fb-1dee7a474880?monitor=true&api-version=2019-06-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
- "17"
+ "10"
],
"x-ms-request-id": [
- "6f45e73c-a3bd-4f14-97fb-1dee7a474880"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-correlation-request-id": [
- "3ab27078-fb14-48bb-a010-e03a512d285b"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031634Z:3ab27078-fb14-48bb-a010-e03a512d285b"
+ "WESTUS:20200826T114627Z:4651262f-d8fa-4f06-a7d3-efc183e01b72"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:33 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
+ ],
+ "Content-Length": [
+ "4"
],
"Content-Type": [
- "text/plain; charset=utf-8"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "null",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/6f45e73c-a3bd-4f14-97fb-1dee7a474880?monitor=true&api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvNmY0NWU3M2MtYTNiZC00ZjE0LTk3ZmItMWRlZTdhNDc0ODgwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39397,60 +20519,67 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "506304da-9669-4624-9683-183816031ba6"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-correlation-request-id": [
- "c367aef8-f1d8-4c7f-a3fb-ef89986cc637"
+ "11934"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031651Z:c367aef8-f1d8-4c7f-a3fb-ef89986cc637"
+ "WESTUS:20200826T114627Z:4e4be010-8064-4f4e-ad49-c3b15e2aef13"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:51 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
- "1285"
+ "4"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Storage/storageAccounts/blobps7860\",\r\n \"name\": \"blobps7860\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-31T03:16:33.844109Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-31T03:16:33.844109Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-31T03:16:33.8128686Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://blobps7860.dfs.core.windows.net/\",\r\n \"web\": \"https://blobps7860.z4.web.core.windows.net/\",\r\n \"blob\": \"https://blobps7860.blob.core.windows.net/\",\r\n \"queue\": \"https://blobps7860.queue.core.windows.net/\",\r\n \"table\": \"https://blobps7860.table.core.windows.net/\",\r\n \"file\": \"https://blobps7860.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Storage/storageAccounts/blobps7860?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2Jsb2Jwczc4NjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "28e8ae9a-771b-48c0-95f8-a750bb3c72d3"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39460,60 +20589,67 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "e33a139c-6b3b-44f7-b80f-2ecf3c4b4d0f"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-correlation-request-id": [
- "cc7830e0-fad8-4d6a-9549-14f265c8cb2d"
+ "11933"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031651Z:cc7830e0-fad8-4d6a-9549-14f265c8cb2d"
+ "WESTUS:20200826T114627Z:61707a03-8e5f-4e6e-a540-3027b8dadc6e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:51 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
- "1285"
+ "4"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Storage/storageAccounts/blobps7860\",\r\n \"name\": \"blobps7860\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-31T03:16:33.844109Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-31T03:16:33.844109Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-31T03:16:33.8128686Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://blobps7860.dfs.core.windows.net/\",\r\n \"web\": \"https://blobps7860.z4.web.core.windows.net/\",\r\n \"blob\": \"https://blobps7860.blob.core.windows.net/\",\r\n \"queue\": \"https://blobps7860.queue.core.windows.net/\",\r\n \"table\": \"https://blobps7860.table.core.windows.net/\",\r\n \"file\": \"https://blobps7860.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Storage/storageAccounts/blobps7860/listKeys?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2Jsb2Jwczc4NjAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "0891f23c-6308-4f45-b076-2f2191834858"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39523,63 +20659,67 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "9a1e031e-a5e3-446b-8e35-2649498db15f"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-correlation-request-id": [
- "eeca5025-8533-48bf-a291-e1dbbc828142"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031651Z:eeca5025-8533-48bf-a291-e1dbbc828142"
+ "WESTUS:20200826T114627Z:fac9c6a2-bf77-43b9-b8ff-6a2816effcba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:51 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
- "288"
+ "4"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"un0Bz6hNgtaj0okvsYhvFxdkovJlf1Es2rDRrx4yXAIekk8Z3KsTk6ydtJkyGtEwCeyjlCnFD2Fbth9xr+22Vw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"ATy75ZbcuySTxeyBi8yAdXaLZsu2+vWEY7BL9r5RNjNwoBHOEY0i2+qDZqtlWAqbZpMtaRXwkSVCDUfIko7P7Q==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2sVpnGateways/ps5004/getp2svpnconnectionhealthdetailed?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzVnBuR2F0ZXdheXMvcHM1MDA0L2dldHAyc3ZwbmNvbm5lY3Rpb25oZWFsdGhkZXRhaWxlZD9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"vpnUserNamesFilter\": [],\r\n \"outputBlobSasUrl\": \"https://blobps7860.blob.core.windows.net/contps7860/emptyfile.txt?sv=2019-02-02&sr=b&sig=P33OCOSw%2Bw9Z%2BfHfnJMgmOdWBDb8eCDRrvfln7FDpQY%3D&st=2020-05-31T02%3A16%3A52Z&se=2020-06-01T03%3A16%3A52Z&sp=rwd\"\r\n}",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "e0511516-41af-4870-a0aa-edf8433fef1a"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "261"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39590,19 +20730,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39611,17 +20754,17 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11931"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031653Z:30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "WESTUS:20200826T114627Z:49aca3e3-8430-4003-997e-678947454007"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:52 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
"4"
@@ -39637,16 +20780,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39657,22 +20800,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39682,16 +20825,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11930"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031653Z:28c8146e-2fc0-49ad-8cee-5b5dbbc5e0e6"
+ "WESTUS:20200826T114628Z:0617d527-9e4c-4f9a-88a0-b1a788d3fe4e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:52 GMT"
+ "Wed, 26 Aug 2020 11:46:27 GMT"
],
"Content-Length": [
"4"
@@ -39707,16 +20850,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39727,22 +20870,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39752,16 +20895,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11929"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031653Z:74023d76-9909-431a-91eb-35902498ef4d"
+ "WESTUS:20200826T114628Z:1605e4ec-4133-41dd-b097-152cde1de6de"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -39777,16 +20920,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39797,22 +20940,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39822,16 +20965,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11928"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031653Z:85e42739-c994-465b-baef-c4df97030e82"
+ "WESTUS:20200826T114628Z:f0c1af6c-894a-4778-ab54-aa3371c7972d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -39847,16 +20990,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39867,22 +21010,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39892,16 +21035,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11927"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031653Z:b96a99e2-a70e-4a6b-9164-21c8f85b7b6e"
+ "WESTUS:20200826T114628Z:8466546d-e766-4996-90b3-0f88b7325259"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -39917,16 +21060,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -39937,22 +21080,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -39962,16 +21105,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11926"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:a50190e7-3294-40e2-8c9a-f0ca7a16644d"
+ "WESTUS:20200826T114628Z:48bf20a3-089d-42f7-a18b-de4072cf2f22"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -39987,16 +21130,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40007,22 +21150,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40032,16 +21175,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11925"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:a3c9e63e-e2b3-41d4-8b50-53939f31e17f"
+ "WESTUS:20200826T114628Z:9098f146-0f7b-4294-9c44-64246d6ee3bb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40057,16 +21200,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40077,22 +21220,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40102,16 +21245,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11924"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:95a800a5-4d6e-4c6f-942b-14788aeb9b39"
+ "WESTUS:20200826T114628Z:6a11b4e5-f7e1-4660-a883-394d2cb19af9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40127,16 +21270,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40147,22 +21290,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40172,16 +21315,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11923"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:78167103-c1d4-4fa2-a27c-2788d0f6ef2c"
+ "WESTUS:20200826T114628Z:5a3f1830-3243-4535-ab14-0c73acbdc569"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40197,16 +21340,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40217,22 +21360,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40242,16 +21385,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11922"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:f8574b16-a46e-40c5-be1c-1bb85833f9c3"
+ "WESTUS:20200826T114628Z:e840c2c5-5173-47f6-aac8-44b937909df2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40267,16 +21410,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40287,22 +21430,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40312,16 +21455,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11921"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:0a7ae3e8-1c9b-4a48-8bf3-28043d4533ec"
+ "WESTUS:20200826T114628Z:4af18654-9e58-489d-93f3-0443b99ae509"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40337,16 +21480,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40357,22 +21500,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40382,16 +21525,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11920"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:62b863f0-0c3e-49c5-a4ba-facfd224ccb0"
+ "WESTUS:20200826T114628Z:0afb4ea3-1f2f-4ff7-a500-361e89389a18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40407,16 +21550,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40427,22 +21570,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40452,16 +21595,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11919"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:2432b606-27fe-4682-9b3e-b30b0edd2b99"
+ "WESTUS:20200826T114628Z:1ca8a74d-0d2f-4575-8e8e-443a41362e29"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40477,16 +21620,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40497,22 +21640,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40522,16 +21665,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11918"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:b8577843-5d76-4dd4-a931-98f514b372f8"
+ "WESTUS:20200826T114628Z:a3986755-c628-4a8a-b048-46c9b8151947"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40547,16 +21690,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40567,22 +21710,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40592,16 +21735,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11917"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:7d41acde-9494-48b1-9860-de9d1b0950fc"
+ "WESTUS:20200826T114628Z:3e78bfc1-94df-4c17-b84d-2a6c3cc03dc7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40617,16 +21760,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40637,22 +21780,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40662,16 +21805,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11916"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:dd0abfbd-77d2-4563-a5c6-3de40b4af317"
+ "WESTUS:20200826T114629Z:0b61b81a-011b-4821-83b6-8db01122c042"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:53 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40687,16 +21830,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40707,22 +21850,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40732,16 +21875,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11915"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:66848a07-96c5-4748-9153-4c609c7d7dc0"
+ "WESTUS:20200826T114629Z:f4ce31b7-80d9-4684-b0d3-8c06e35994a2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:28 GMT"
],
"Content-Length": [
"4"
@@ -40757,16 +21900,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40777,22 +21920,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40802,16 +21945,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11914"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:24d1bf86-1853-45de-ac0c-4382556a57ce"
+ "WESTUS:20200826T114629Z:d6a06653-198b-45c0-8f31-a0cdb5b54054"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -40827,16 +21970,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40847,22 +21990,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40872,16 +22015,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11913"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031654Z:618d92bc-ec2b-424b-9e68-85f1e1a1de08"
+ "WESTUS:20200826T114629Z:a9790c5f-35d9-41a2-946f-5028edf137c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -40897,16 +22040,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40917,22 +22060,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40942,16 +22085,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11912"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:4038d9d4-4769-49f3-9e2e-07b4f076d1dd"
+ "WESTUS:20200826T114629Z:e742e263-8322-438b-a697-0e69fe23cde7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -40967,16 +22110,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -40987,22 +22130,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41012,16 +22155,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11911"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:d0f7f1e0-19a2-4df2-884f-f04377264adf"
+ "WESTUS:20200826T114629Z:741b92e9-aca4-456f-8c2b-e43dcb395df1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -41037,16 +22180,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41057,22 +22200,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41082,16 +22225,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11910"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:5fadeae4-12a6-4a30-a759-68f547e1dba9"
+ "WESTUS:20200826T114629Z:5f464bc1-1f48-4491-96c8-715c0b87a306"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -41107,16 +22250,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41127,22 +22270,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41152,16 +22295,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11909"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:9c8d004a-f31e-4ac8-911e-cd457a4eee44"
+ "WESTUS:20200826T114629Z:681a93dc-5735-4b45-8a27-d9ab55139029"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -41177,16 +22320,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41197,22 +22340,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41222,16 +22365,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11908"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:9d1bea7a-243f-482a-96e1-1f0c9c492cbf"
+ "WESTUS:20200826T114629Z:75d28b48-b184-4cdc-bef3-93f139ff5905"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
"4"
@@ -41247,16 +22390,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRkMDFlMzYzLWQ5MTUtNDQ0Yi1hOTg2LTNjZmQxMDgxMjA4ND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41267,22 +22410,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/4d01e363-d915-444b-a986-3cfd10812084?api-version=2019-08-01"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "4d01e363-d915-444b-a986-3cfd10812084"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "7ff861c5-4187-445f-8b58-ab52fc672d15"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3ae70258-f4aa-4504-a761-a2d23dd50834"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41292,19 +22429,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11907"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:0aebd196-b993-4003-8564-74875c9574fa"
+ "WESTUS:20200826T114629Z:287d8a75-ee6b-4fc3-83d2-88642df1eb5f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:29 GMT"
],
"Content-Length": [
- "4"
+ "357"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41313,20 +22450,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"profileUrl\": \"https://nfvprodsuppcy.blob.core.windows.net/vpnprofileimmutable/244dc8b5-c1ac-41a0-8775-5740f2754cb3/vpnprofile/1c27ad8f-80b8-48b5-9963-b49dfa9fba42/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=I6%2FYgk%2BjXvOARbIjsvmqhXOGKqS3%2B9M4%2BgXXl5Ebjao%3D&st=2020-08-26T11%3A41%3A27Z&se=2020-08-26T12%3A41%3A27Z&sp=r&fileExtension=.zip\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f062df1c-e71c-46e9-868f-0682afb2674e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41336,23 +22479,71 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "bb00880f-dc07-4fc4-9756-6e43403760f6"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "x-ms-correlation-request-id": [
+ "bb00880f-dc07-4fc4-9756-6e43403760f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T114629Z:bb00880f-dc07-4fc4-9756-6e43403760f6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 11:46:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "226"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnServerConfigurations/ps6662' under resource group 'ps1913' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"24a513ca-2dad-4371-884d-ad78d311badd\""
+ ],
+ "x-ms-request-id": [
+ "3efe8c14-2a00-444b-9ba7-fb687d96368a"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "f5d15b86-2b56-4ccf-bc0c-80c0048258b4"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "4c4c6e37-0ea6-425f-999a-691b4321f409"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41362,19 +22553,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:9b06960a-c7ad-4b24-89ad-fa9eed0eaa9a"
+ "WESTUS:20200826T114642Z:f5d15b86-2b56-4ccf-bc0c-80c0048258b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:41 GMT"
],
"Content-Length": [
- "4"
+ "2179"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41383,20 +22574,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"24a513ca-2dad-4371-884d-ad78d311badd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d5b7d32a-b7d2-423e-8a46-576c8321c787"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41406,23 +22603,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"24a513ca-2dad-4371-884d-ad78d311badd\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "b90f2755-c7aa-4274-8402-26d8cfa4f49e"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "e769e6b7-5522-4039-9769-7ca6b2aadced"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "9d944d10-9e45-446d-b9c5-d5842414c4cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41432,19 +22623,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:53900be7-b4ba-4975-aa30-a59802fc00a9"
+ "WESTUS:20200826T114642Z:e769e6b7-5522-4039-9769-7ca6b2aadced"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:41 GMT"
],
"Content-Length": [
- "4"
+ "2179"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41453,20 +22644,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"24a513ca-2dad-4371-884d-ad78d311badd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c94bb1cf-b9dc-48ae-b074-5acb6708facd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41476,23 +22673,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"24a513ca-2dad-4371-884d-ad78d311badd\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "4bec9c76-4174-4fce-b4cc-ecaa5e0d7a60"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "c5d5ac5b-4c4d-401f-9e40-76eb9ce1cd4a"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "9e3a4f87-0d58-4f67-8a72-2f484cf91a3a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41502,19 +22693,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:e2f0faf6-f337-4da5-9401-d73d314adf09"
+ "WESTUS:20200826T114642Z:c5d5ac5b-4c4d-401f-9e40-76eb9ce1cd4a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:41 GMT"
],
"Content-Length": [
- "4"
+ "2179"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41523,20 +22714,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"24a513ca-2dad-4371-884d-ad78d311badd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41546,23 +22737,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"1ae1cc85-9bf5-4f72-9fc0-eb341712472d\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "a25a83b1-931e-458e-aadb-96e3ff25aa53"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "bd5c3cb8-bac4-45d0-8622-ee08452fbc25"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "3f5bd76b-d599-4b85-a8f2-85ecd9b3a876"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41572,19 +22757,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:57857979-a2cb-4db9-aa6d-79f159c6b209"
+ "WESTUS:20200826T114653Z:bd5c3cb8-bac4-45d0-8622-ee08452fbc25"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:53 GMT"
],
"Content-Length": [
- "4"
+ "2180"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41593,20 +22778,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"1ae1cc85-9bf5-4f72-9fc0-eb341712472d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a404c6ea-0ac1-48f2-8655-35ec690b76cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41616,23 +22807,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"1ae1cc85-9bf5-4f72-9fc0-eb341712472d\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "aa7a556d-4f5e-4fb2-bc62-6814b9d84c13"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "ae14c7a0-dbbb-48b1-9123-404eae918d51"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "69c11fa6-0d3c-489a-8845-622d9f3ee795"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41642,19 +22827,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:b7c60e21-174d-4545-baf7-95a062451f99"
+ "WESTUS:20200826T114653Z:ae14c7a0-dbbb-48b1-9123-404eae918d51"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:53 GMT"
],
"Content-Length": [
- "4"
+ "2180"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41663,20 +22848,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"1ae1cc85-9bf5-4f72-9fc0-eb341712472d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80c95295-6f5e-408a-8b98-634c209c07c6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41686,23 +22877,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"1ae1cc85-9bf5-4f72-9fc0-eb341712472d\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "dc9b04f5-9016-42c2-ba10-65ba494c7d1f"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "04244373-21c6-46b9-a7b1-6b29bbfbed79"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "80582487-904e-411e-b355-808ef83984ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41712,19 +22897,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:4a54fce1-27a8-47c6-9123-787360cc9a2e"
+ "WESTUS:20200826T114654Z:04244373-21c6-46b9-a7b1-6b29bbfbed79"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:54 GMT"
+ "Wed, 26 Aug 2020 11:46:53 GMT"
],
"Content-Length": [
- "4"
+ "2180"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41733,20 +22918,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"1ae1cc85-9bf5-4f72-9fc0-eb341712472d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41756,23 +22941,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"e05f9ba6-1dc7-4ee9-aa41-933b21799e12\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "34b554d5-628d-4308-b970-7fb0d9d6c80b"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "6d9e1358-c897-47ab-afda-8dded36ab863"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "e2a4bbd0-ccdf-4648-8053-d873a42b8260"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41782,19 +22961,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:bdf9a941-41ea-4f2a-94a0-aba90d87821f"
+ "WESTUS:20200826T114704Z:6d9e1358-c897-47ab-afda-8dded36ab863"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:55 GMT"
+ "Wed, 26 Aug 2020 11:47:04 GMT"
],
"Content-Length": [
- "4"
+ "2180"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41803,20 +22982,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"e05f9ba6-1dc7-4ee9-aa41-933b21799e12\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk2NDdiMDg0LWQ2NTItNDk1Yy1iZjQxLTRkOTUzYWI1NWQ3MT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d15a99c5-f7db-4711-b946-9bbf00ccb0d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41826,17 +23011,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/9647b084-d652-495c-bf41-4d953ab55d71?api-version=2019-08-01"
+ "ETag": [
+ "W/\"e05f9ba6-1dc7-4ee9-aa41-933b21799e12\""
],
"x-ms-request-id": [
- "9647b084-d652-495c-bf41-4d953ab55d71"
+ "e28a1cd1-e7f8-4708-8864-3ded7da54ea2"
],
"x-ms-correlation-request-id": [
- "30b0ae5e-0ab1-4348-a9bf-5ec089d1d103"
+ "e74b5666-2f2a-484c-8954-14f837dad7d6"
],
"x-ms-arm-service-request-id": [
- "32faa36b-6d9c-45a9-ae54-d80e3858f3c4"
+ "6e215db1-6849-48cc-b1da-8e76a60a9593"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41846,19 +23031,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031655Z:88c2db1d-953d-4e65-a0a8-301847275dfb"
+ "WESTUS:20200826T114704Z:e74b5666-2f2a-484c-8954-14f837dad7d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:55 GMT"
+ "Wed, 26 Aug 2020 11:47:04 GMT"
],
"Content-Length": [
- "222"
+ "2180"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -41867,26 +23052,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sasUrl\": \"https://blobps7860.blob.core.windows.net/contps7860/emptyfile.txt?sv=2019-02-02&sr=b&sig=P33OCOSw%2Bw9Z%2BfHfnJMgmOdWBDb8eCDRrvfln7FDpQY%3D&st=2020-05-31T02%3A16%3A52Z&se=2020-06-01T03%3A16%3A52Z&sp=rwd\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"e05f9ba6-1dc7-4ee9-aa41-933b21799e12\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/p2svpnGateways/ps5004?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHM1MDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "9c96e890-9a74-497a-aaea-b6b7542804ec"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41896,26 +23075,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01"
- ],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"4c637338-bc9c-4e6d-8c3f-243c6c455369\""
],
"x-ms-request-id": [
- "3ba59283-c715-4c16-b80f-df3c7e387442"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01"
+ "d918fc91-f4bb-406f-9bc6-59a6cafcca4d"
],
"x-ms-correlation-request-id": [
- "136d5fe1-3d5b-4a9b-b587-7ca2583a0185"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "4e969a12-5245-4e8d-b428-618b6118c929"
],
"x-ms-arm-service-request-id": [
- "d3e14c26-2a3a-4256-ba0b-5192846b76c6"
+ "6a6717be-1030-4144-8832-3fd267334484"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41924,39 +23094,48 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031656Z:136d5fe1-3d5b-4a9b-b587-7ca2583a0185"
+ "WESTUS:20200826T114715Z:4e969a12-5245-4e8d-b428-618b6118c929"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:16:56 GMT"
+ "Wed, 26 Aug 2020 11:47:14 GMT"
+ ],
+ "Content-Length": [
+ "2180"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"4c637338-bc9c-4e6d-8c3f-243c6c455369\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5978a885-0047-4a19-8160-fc856c3f575c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -41966,17 +23145,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"4c637338-bc9c-4e6d-8c3f-243c6c455369\""
],
"x-ms-request-id": [
- "48b8d98f-6961-41fb-8228-04b639168cbe"
+ "2eee205e-61fa-4752-af31-7d39d96e7363"
],
"x-ms-correlation-request-id": [
- "a00de947-7e95-4a12-9f8a-c1364a53bbf2"
+ "893f6654-67ac-4f07-8c79-4936f3fcce7e"
],
"x-ms-arm-service-request-id": [
- "6d3ea1d2-89b0-410e-8b5e-f1fe3d16e101"
+ "41eac2bb-ba76-4d11-83c9-728586ef36a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -41989,16 +23168,16 @@
"11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031706Z:a00de947-7e95-4a12-9f8a-c1364a53bbf2"
+ "WESTUS:20200826T114716Z:893f6654-67ac-4f07-8c79-4936f3fcce7e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:17:06 GMT"
+ "Wed, 26 Aug 2020 11:47:16 GMT"
],
"Content-Length": [
- "30"
+ "2180"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42007,20 +23186,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"4c637338-bc9c-4e6d-8c3f-243c6c455369\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db98f3ba-412a-496e-97e2-12108afb0343"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1863"
]
},
"ResponseHeaders": {
@@ -42034,13 +23225,19 @@
"10"
],
"x-ms-request-id": [
- "4dab34dc-2b2a-4eaf-8fbc-53cc6d6dd0c6"
+ "8d244c7e-1679-4fd5-b0ea-fffef5ecc15c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8d244c7e-1679-4fd5-b0ea-fffef5ecc15c?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "d57c744f-c448-44b5-a91d-e02bda679023"
+ "3226927d-1337-42e0-a1c7-790ec05fb03d"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "77743240-ba54-426d-8248-04f3174b521e"
+ "e692b9d7-de6e-44c3-9605-0585b0b2e21d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42049,20 +23246,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031716Z:d57c744f-c448-44b5-a91d-e02bda679023"
+ "WESTUS:20200826T114631Z:3226927d-1337-42e0-a1c7-790ec05fb03d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:17:16 GMT"
+ "Wed, 26 Aug 2020 11:46:31 GMT"
],
"Content-Length": [
- "30"
+ "2178"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42071,20 +23268,111 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"5d0e91c2-b9f1-4cfd-95b5-a3a246636556\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"location\": \"westcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f9b98d8c-5ef7-4881-8c5c-459be7bae0fe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2007"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "277dbb39-9679-4f76-ad4d-d1a23cd661bc"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/277dbb39-9679-4f76-ad4d-d1a23cd661bc?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "89ccc8fa-a2d1-4f37-93c5-97d36b2bc34e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "30d384c3-db14-41a7-be49-e627a7f82e31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T114643Z:89ccc8fa-a2d1-4f37-93c5-97d36b2bc34e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 11:46:42 GMT"
+ ],
+ "Content-Length": [
+ "2179"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"180dd70b-9f45-42ea-9203-b29fe902f012\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer1\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"location\": \"westcentralus\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bebfc599-1d99-40b5-8a3e-e1dcdb671d25"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2007"
]
},
"ResponseHeaders": {
@@ -42098,13 +23386,16 @@
"10"
],
"x-ms-request-id": [
- "7ebb3286-055a-4f2f-9fc5-5dcb1fec898b"
+ "26d76d3e-36d9-4bb4-a7ae-44ea5914cf93"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/26d76d3e-36d9-4bb4-a7ae-44ea5914cf93?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "3bc1d42d-5cc8-4e1f-a8fd-8eff33d7653d"
+ "6b024734-8de5-49a3-a49a-3ad59588dfbc"
],
"x-ms-arm-service-request-id": [
- "a811be62-7eba-4355-b734-d792964ae7bf"
+ "7bba8571-d206-4126-8c94-680d437cdcee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42113,20 +23404,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031726Z:3bc1d42d-5cc8-4e1f-a8fd-8eff33d7653d"
+ "WESTUS:20200826T114654Z:6b024734-8de5-49a3-a49a-3ad59588dfbc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:17:26 GMT"
+ "Wed, 26 Aug 2020 11:46:54 GMT"
],
"Content-Length": [
- "30"
+ "2179"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42135,20 +23426,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"10475d7b-51c7-4c9f-b31b-a767e6138a15\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer2\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": []\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"location\": \"westcentralus\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6b7a505-ca68-4ea0-b595-965860b75068"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2007"
]
},
"ResponseHeaders": {
@@ -42162,13 +23465,16 @@
"10"
],
"x-ms-request-id": [
- "b14b7998-12a9-41e1-bed9-8cea16b0f21a"
+ "5c828bed-1c0f-4e5a-97bc-d4fec0d4e5ac"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5c828bed-1c0f-4e5a-97bc-d4fec0d4e5ac?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "c09fa516-74ff-4179-aef4-944c3a4935c7"
+ "49a67b7a-d942-4ba5-bd07-06aa0df91aaa"
],
"x-ms-arm-service-request-id": [
- "0a958b42-065d-4c1c-8582-188ce7ea37ab"
+ "03977f0a-834f-4698-b549-0610c593ac6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42177,20 +23483,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031736Z:c09fa516-74ff-4179-aef4-944c3a4935c7"
+ "WESTUS:20200826T114705Z:49a67b7a-d942-4ba5-bd07-06aa0df91aaa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:17:36 GMT"
+ "Wed, 26 Aug 2020 11:47:04 GMT"
],
"Content-Length": [
- "30"
+ "2179"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42199,20 +23505,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6662\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662\",\r\n \"etag\": \"W/\\\"97438cc1-225a-446a-811c-3f65530439cf\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer3\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": \"EF6C937B5935E25941F2EA271D38F90DFDB20953\"\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8d244c7e-1679-4fd5-b0ea-fffef5ecc15c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzhkMjQ0YzdlLTE2NzktNGZkNS1iMGVhLWZmZmVmNWVjYzE1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42222,17 +23528,75 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "x-ms-request-id": [
+ "caa401d3-3ce2-4918-bdb0-6eabe9d6825a"
+ ],
+ "x-ms-correlation-request-id": [
+ "63f6a13a-4019-4934-bf5d-444a5a57354c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "54547ace-f737-4e4c-9001-00bd7f7c32dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T114642Z:63f6a13a-4019-4934-bf5d-444a5a57354c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 11:46:41 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/277dbb39-9679-4f76-ad4d-d1a23cd661bc?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI3N2RiYjM5LTk2NzktNGY3Ni1hZDRkLWQxYTIzY2Q2NjFiYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "d984f142-1976-4011-93a9-5fa7742304d1"
+ "777a5131-c1f1-486b-8673-e7c2d8750622"
],
"x-ms-correlation-request-id": [
- "2400e2ad-3ae3-46e7-8def-76675d62d205"
+ "4957bc88-0767-4cf9-ba4e-3f2de255bf59"
],
"x-ms-arm-service-request-id": [
- "423e3a60-047b-407a-b8fb-defdd60de6bf"
+ "f577eaca-7b8a-47e9-8434-f91ef3e2d7c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42242,19 +23606,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031747Z:2400e2ad-3ae3-46e7-8def-76675d62d205"
+ "WESTUS:20200826T114653Z:4957bc88-0767-4cf9-ba4e-3f2de255bf59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:17:46 GMT"
+ "Wed, 26 Aug 2020 11:46:53 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42263,20 +23627,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/26d76d3e-36d9-4bb4-a7ae-44ea5914cf93?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI2ZDc2ZDNlLTM2ZDktNGJiNC1hN2FlLTQ0ZWE1OTE0Y2Y5Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42286,17 +23650,75 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "x-ms-request-id": [
+ "ab450caf-eba5-4474-8ff8-8112d9c04bb0"
+ ],
+ "x-ms-correlation-request-id": [
+ "e37903de-196b-4662-8bd1-84857de703e1"
+ ],
+ "x-ms-arm-service-request-id": [
+ "44810e68-ba3f-40f5-8815-4fa9f8643be8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200826T114704Z:e37903de-196b-4662-8bd1-84857de703e1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 26 Aug 2020 11:47:04 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/5c828bed-1c0f-4e5a-97bc-d4fec0d4e5ac?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzVjODI4YmVkLTFjMGYtNGU1YS05N2JjLWQ0ZmVjMGQ0ZTVhYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "13a7af8f-f93a-47f5-9ee6-deabfe0c5039"
+ "86f8b3c7-b314-45b5-8ec3-d003cede4c93"
],
"x-ms-correlation-request-id": [
- "5912c834-2948-4b6c-b98c-37347e0ff923"
+ "e698fc71-ff01-4622-a45c-f560ed34a92d"
],
"x-ms-arm-service-request-id": [
- "0b8d8c6f-d597-46df-8fe4-ec91c053fac3"
+ "66c0f04c-0262-4794-a846-513a0e8b629e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42306,19 +23728,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031757Z:5912c834-2948-4b6c-b98c-37347e0ff923"
+ "WESTUS:20200826T114715Z:e698fc71-ff01-4622-a45c-f560ed34a92d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:17:56 GMT"
+ "Wed, 26 Aug 2020 11:47:14 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42327,20 +23749,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42351,16 +23773,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "9f1ec9c1-d821-4b23-8c41-92b84422d852"
+ "10ab920a-ce4d-4552-b6b4-aa4a00a1675d"
],
"x-ms-correlation-request-id": [
- "c83bd9b7-d133-41c9-b1d2-cf3fb3f4dfa2"
+ "ee30f0fb-a197-4189-be73-72ede5899af0"
],
"x-ms-arm-service-request-id": [
- "26321728-7aca-40b5-a8bf-73b05d0d9928"
+ "3605bbac-1027-4d97-92ff-102b14be71da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42370,16 +23792,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031807Z:c83bd9b7-d133-41c9-b1d2-cf3fb3f4dfa2"
+ "WESTUS:20200826T114727Z:ee30f0fb-a197-4189-be73-72ede5899af0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:18:06 GMT"
+ "Wed, 26 Aug 2020 11:47:27 GMT"
],
"Content-Length": [
"30"
@@ -42395,16 +23817,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42415,16 +23837,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "80a2e766-e900-422e-a283-5b1269a7b560"
+ "42957ad9-f1e4-4ce9-b714-bebaaa15a08c"
],
"x-ms-correlation-request-id": [
- "3c063685-5faa-40b5-a5c3-70e328ed9a33"
+ "8e609166-fa03-4bee-9c39-933bed7b6ff4"
],
"x-ms-arm-service-request-id": [
- "500615bb-166b-4f76-8568-fc5b1271b9d7"
+ "110ee9c8-7a9e-44cf-8150-59ea17e2478b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42434,16 +23856,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031817Z:3c063685-5faa-40b5-a5c3-70e328ed9a33"
+ "WESTUS:20200826T114747Z:8e609166-fa03-4bee-9c39-933bed7b6ff4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:18:16 GMT"
+ "Wed, 26 Aug 2020 11:47:47 GMT"
],
"Content-Length": [
"30"
@@ -42459,16 +23881,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42479,16 +23901,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "80"
],
"x-ms-request-id": [
- "01468764-0341-41dc-bed6-0dab941e2bc2"
+ "8021c564-1fcb-4d4c-81fc-e3b58a00fe9b"
],
"x-ms-correlation-request-id": [
- "f49dccd4-a725-4481-99d1-2a2c524d67b5"
+ "d14ad5f0-d068-4ad6-976e-6d590c4de4e2"
],
"x-ms-arm-service-request-id": [
- "a97468a4-7f8a-43db-85d3-9577f75837ee"
+ "662c8cb5-b9bd-47ab-ba4f-12bbb524326b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42498,16 +23920,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031827Z:f49dccd4-a725-4481-99d1-2a2c524d67b5"
+ "WESTUS:20200826T114827Z:d14ad5f0-d068-4ad6-976e-6d590c4de4e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:18:26 GMT"
+ "Wed, 26 Aug 2020 11:48:26 GMT"
],
"Content-Length": [
"30"
@@ -42523,16 +23945,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42543,16 +23965,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "468aa68f-150b-47d0-af31-f302250d216e"
+ "61031da5-4c5d-4a7b-941d-a89f2cbbaee7"
],
"x-ms-correlation-request-id": [
- "db1067c6-cd98-402f-b916-f9c5ba36bc99"
+ "91093adf-0893-4a10-9185-39e480526ce7"
],
"x-ms-arm-service-request-id": [
- "d428bc78-6c5d-4c5e-8ac0-50e882bf931f"
+ "dd121611-7349-4b2a-9f9a-7e743ae8776e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42562,16 +23984,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031837Z:db1067c6-cd98-402f-b916-f9c5ba36bc99"
+ "WESTUS:20200826T114947Z:91093adf-0893-4a10-9185-39e480526ce7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:18:37 GMT"
+ "Wed, 26 Aug 2020 11:49:47 GMT"
],
"Content-Length": [
"30"
@@ -42587,16 +24009,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42607,16 +24029,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "0a2d86a2-c80b-425b-80aa-89e8b07bed81"
+ "3b24b437-31b7-44b1-b32d-35938dbbb9ad"
],
"x-ms-correlation-request-id": [
- "316dc68c-7729-4ea7-9a16-6076ec671b3b"
+ "d5ff0f14-6874-4981-b2a7-de3338f84967"
],
"x-ms-arm-service-request-id": [
- "1dea8e57-166f-4e00-b0e3-068c2ed998c2"
+ "669b9aaf-c192-4509-a660-6e38d14770bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42626,16 +24048,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031847Z:316dc68c-7729-4ea7-9a16-6076ec671b3b"
+ "WESTUS:20200826T115127Z:d5ff0f14-6874-4981-b2a7-de3338f84967"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:18:47 GMT"
+ "Wed, 26 Aug 2020 11:51:26 GMT"
],
"Content-Length": [
"30"
@@ -42651,16 +24073,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42671,16 +24093,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "abbc9590-2c3a-4223-9984-aee1a6095a39"
+ "cc91bf5a-01e9-413b-bb56-c22ee83e6e31"
],
"x-ms-correlation-request-id": [
- "3c466b77-1d8f-4800-b6ef-a43d26f1f645"
+ "f1070927-c14f-4de1-8e48-bad2a199455e"
],
"x-ms-arm-service-request-id": [
- "ced2a19e-da5a-4cad-b640-b78be6c4df58"
+ "33adaa2d-2c0e-40b6-84cc-77e10db7123d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42690,16 +24112,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031857Z:3c466b77-1d8f-4800-b6ef-a43d26f1f645"
+ "WESTUS:20200826T115308Z:f1070927-c14f-4de1-8e48-bad2a199455e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:18:57 GMT"
+ "Wed, 26 Aug 2020 11:53:07 GMT"
],
"Content-Length": [
"30"
@@ -42715,16 +24137,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42735,16 +24157,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "958b950e-ba4d-41ee-9f29-eaf68c9e0881"
+ "737ae48b-2f67-4c9c-925d-5d50d9229456"
],
"x-ms-correlation-request-id": [
- "45572100-1ae0-47bc-97f1-259f247f90b0"
+ "f168c707-2b92-45b1-8619-3a421470e155"
],
"x-ms-arm-service-request-id": [
- "abb77226-a5ae-42a7-b31c-b9caf6137f0e"
+ "9d9f7428-fdd6-45c6-bad2-5b7ddbc56aac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42754,16 +24176,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031907Z:45572100-1ae0-47bc-97f1-259f247f90b0"
+ "WESTUS:20200826T115448Z:f168c707-2b92-45b1-8619-3a421470e155"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:19:07 GMT"
+ "Wed, 26 Aug 2020 11:54:48 GMT"
],
"Content-Length": [
"30"
@@ -42779,16 +24201,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9427a952-e07b-4a5c-87d8-6ca6d7dae0d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk0MjdhOTUyLWUwN2ItNGE1Yy04N2Q4LTZjYTZkN2RhZTBkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42798,17 +24220,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "aa0e02aa-8772-49b4-8b16-bdad664f9df1"
+ "6aef92da-4b43-421a-840f-46eab614fbaa"
],
"x-ms-correlation-request-id": [
- "fe25e1e9-dcba-4a53-ac75-96512250c4b3"
+ "efdac995-76fd-4775-b3e8-d3eb4a3c8a8b"
],
"x-ms-arm-service-request-id": [
- "13a7a6da-a3f2-4920-b9b7-8ee5a219173f"
+ "24335e8a-6970-4a89-af18-bfdf13eb558a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42818,19 +24237,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031917Z:fe25e1e9-dcba-4a53-ac75-96512250c4b3"
+ "WESTUS:20200826T115628Z:efdac995-76fd-4775-b3e8-d3eb4a3c8a8b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:19:17 GMT"
+ "Wed, 26 Aug 2020 11:56:27 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -42839,20 +24258,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42863,16 +24282,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "28609e2e-5574-4e35-9231-212c5e602be9"
+ "ce47b04c-3ffd-4970-8271-4359f3d0a88f"
],
"x-ms-correlation-request-id": [
- "ac87a4c4-d3b6-4df2-b2d0-00fa602efa5f"
+ "8d8a7ea3-34db-45bf-974d-0dbb88306cc1"
],
"x-ms-arm-service-request-id": [
- "be0bb304-3960-484c-a5d1-5252ef51af7b"
+ "d9dd9617-fd79-4f55-91f2-09556e45f0ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42882,16 +24301,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031927Z:ac87a4c4-d3b6-4df2-b2d0-00fa602efa5f"
+ "WESTUS:20200826T115640Z:8d8a7ea3-34db-45bf-974d-0dbb88306cc1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:19:27 GMT"
+ "Wed, 26 Aug 2020 11:56:39 GMT"
],
"Content-Length": [
"30"
@@ -42907,16 +24326,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42927,16 +24346,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "12be4878-9e32-4082-9213-b2ad7e7c838a"
+ "4b23677b-b859-401d-970c-aaa88df261e2"
],
"x-ms-correlation-request-id": [
- "2e2090e1-ef47-47ab-a331-1f5afa38b6e0"
+ "e9f1da68-16c3-47ee-ac6c-6a8ff33feaaf"
],
"x-ms-arm-service-request-id": [
- "a512b6e2-9389-4c17-b1e9-b6d9b529a315"
+ "a8f518ca-b998-4f29-8307-6824b9d8ce58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42946,16 +24365,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031937Z:2e2090e1-ef47-47ab-a331-1f5afa38b6e0"
+ "WESTUS:20200826T115700Z:e9f1da68-16c3-47ee-ac6c-6a8ff33feaaf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:19:37 GMT"
+ "Wed, 26 Aug 2020 11:56:59 GMT"
],
"Content-Length": [
"30"
@@ -42971,16 +24390,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -42991,16 +24410,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "80"
],
"x-ms-request-id": [
- "3ac13a30-b5bc-4946-b426-51bdbef9474b"
+ "fc4f3df4-97c1-4b07-babe-44b3a3a4e3e5"
],
"x-ms-correlation-request-id": [
- "99828ed8-2520-4ea3-81a9-146e75074d8a"
+ "b3b30ada-2e20-4708-80e1-94d48198c78e"
],
"x-ms-arm-service-request-id": [
- "cc8af917-a307-4af5-ae5e-81b133d66037"
+ "c715fbd5-57b3-4d9d-bf9d-e508ad88fe2d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43010,16 +24429,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031948Z:99828ed8-2520-4ea3-81a9-146e75074d8a"
+ "WESTUS:20200826T115740Z:b3b30ada-2e20-4708-80e1-94d48198c78e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:19:47 GMT"
+ "Wed, 26 Aug 2020 11:57:39 GMT"
],
"Content-Length": [
"30"
@@ -43035,16 +24454,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43055,16 +24474,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "f6ec5b1b-0050-4d00-b4da-108d2a3e5471"
+ "967c27bf-8643-4cf1-accf-13ed6221f186"
],
"x-ms-correlation-request-id": [
- "53999f2c-257e-438a-8a47-43209634700b"
+ "71901f5f-9b67-47eb-8e15-c383f85c634a"
],
"x-ms-arm-service-request-id": [
- "21b8411d-4c45-462c-9737-2bcd7e9e631d"
+ "670d4344-b50d-433a-86d4-b0f450172e43"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43074,16 +24493,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T031958Z:53999f2c-257e-438a-8a47-43209634700b"
+ "WESTUS:20200826T115900Z:71901f5f-9b67-47eb-8e15-c383f85c634a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:19:57 GMT"
+ "Wed, 26 Aug 2020 11:59:00 GMT"
],
"Content-Length": [
"30"
@@ -43099,16 +24518,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43119,16 +24538,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "fcfd6669-2a84-4d6a-aef2-e2a15f3518e4"
+ "ddca2efe-d811-47c4-901b-48c8827321c7"
],
"x-ms-correlation-request-id": [
- "cfa59524-b5ca-45f3-97da-06a8354d251c"
+ "9fabaa36-7299-42fc-a6e4-cbdb8ed8d91a"
],
"x-ms-arm-service-request-id": [
- "2842d783-07af-4b37-9cb9-d70d002c12d0"
+ "5c0e9fd3-f614-4270-82ce-29cffc62e05a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43138,16 +24557,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032008Z:cfa59524-b5ca-45f3-97da-06a8354d251c"
+ "WESTUS:20200826T120040Z:9fabaa36-7299-42fc-a6e4-cbdb8ed8d91a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:20:07 GMT"
+ "Wed, 26 Aug 2020 12:00:40 GMT"
],
"Content-Length": [
"30"
@@ -43163,16 +24582,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43183,16 +24602,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "bc623792-9646-4cec-ad43-44b5523a7aed"
+ "e51d2dad-b905-4456-a427-9f529e754ffe"
],
"x-ms-correlation-request-id": [
- "7d2badb3-6ae5-43fe-bc16-7e18bd8a8b61"
+ "69688800-50bd-4ccc-8b60-d8c1f9d33dc2"
],
"x-ms-arm-service-request-id": [
- "917d61bd-9de0-4802-a2ad-0cbd946f317b"
+ "3a70ee2f-3f5d-4b34-851e-3b3e11d381a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43202,16 +24621,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032018Z:7d2badb3-6ae5-43fe-bc16-7e18bd8a8b61"
+ "WESTUS:20200826T120220Z:69688800-50bd-4ccc-8b60-d8c1f9d33dc2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:20:17 GMT"
+ "Wed, 26 Aug 2020 12:02:20 GMT"
],
"Content-Length": [
"30"
@@ -43227,16 +24646,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9c948ae5-f6ae-43cb-bc89-898b4872b05d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzljOTQ4YWU1LWY2YWUtNDNjYi1iYzg5LTg5OGI0ODcyYjA1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43246,17 +24665,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "449a1011-5a1f-44aa-a192-fa627fa53eba"
+ "8b396e74-f6f1-45c3-ac66-597b5b4bca55"
],
"x-ms-correlation-request-id": [
- "2c700ce7-69e1-4302-b8a1-f0c58789269f"
+ "bb24da9b-71a4-4534-ab79-5445f4010f8d"
],
"x-ms-arm-service-request-id": [
- "7197afc5-6e50-4a97-a22e-d56a06a02bb2"
+ "742513af-e9d9-47dd-87b7-96bdd9689eab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43266,19 +24682,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032028Z:2c700ce7-69e1-4302-b8a1-f0c58789269f"
+ "WESTUS:20200826T120401Z:bb24da9b-71a4-4534-ab79-5445f4010f8d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:20:27 GMT"
+ "Wed, 26 Aug 2020 12:04:00 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43287,20 +24703,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43310,17 +24726,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2ae4e962-c181-4e4f-9007-f1d9d7f336f0"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "fd628d63-d5ad-48f3-b5ec-b1141fc74cc4"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "b5f33df5-d225-47b2-983c-7ed4e8a978b5"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43330,19 +24752,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032038Z:fd628d63-d5ad-48f3-b5ec-b1141fc74cc4"
+ "WESTUS:20200826T120402Z:c813b7fa-8a65-4185-8c03-86cecb983415"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:20:38 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43351,20 +24773,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43374,17 +24796,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "bedb5dc0-8fb2-483e-8c8e-24a3a3d67b7a"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "75c9e42a-2713-483d-86d6-c504f1970a84"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "2c933519-622e-42e8-8649-3699d012b1d5"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43394,19 +24822,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032048Z:75c9e42a-2713-483d-86d6-c504f1970a84"
+ "WESTUS:20200826T120402Z:5ab8bd5c-4309-4c9d-8f45-867cb267231e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:20:48 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43415,20 +24843,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43438,17 +24866,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "1682e96d-fb38-4876-85bb-be4df7005f0a"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "14bd0e3e-737b-4bc0-831f-9636bea4927c"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "5df75ee6-256a-4bbc-9216-f9b85c5d9f92"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43458,19 +24892,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032058Z:14bd0e3e-737b-4bc0-831f-9636bea4927c"
+ "WESTUS:20200826T120402Z:43a29e6b-e7a3-4019-9c0a-c272216c6742"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:20:58 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43479,20 +24913,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43502,17 +24936,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "91dd3e54-8818-420a-a8bb-8f67cd2ffe43"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "88ac717e-05f6-4fe2-994d-4601a87d5caf"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "747a7556-b118-4cda-aa79-eb4b1a45e2be"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43522,19 +24962,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032108Z:88ac717e-05f6-4fe2-994d-4601a87d5caf"
+ "WESTUS:20200826T120402Z:4d050876-5019-4a5a-abce-0af2c292f49b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:21:08 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43543,20 +24983,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43566,17 +25006,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2a40f063-2e3c-42eb-9c49-e681315a1a5f"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ec7d8b3c-15ce-4bf0-abb0-9ab87b518600"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "ddd2a45d-87cf-4bed-ab7d-4044f6d8e664"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43586,19 +25032,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032118Z:ec7d8b3c-15ce-4bf0-abb0-9ab87b518600"
+ "WESTUS:20200826T120402Z:51ffe73e-c25b-4f91-b6a1-36a84a8038ae"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:21:18 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43607,20 +25053,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43630,17 +25076,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d9e61235-3410-4698-8741-7eaf0a870d2c"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e26e1309-1235-475c-879e-f7711ac6bd50"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "3fd5d179-3541-4cd7-9b72-6ed2a3170383"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43650,19 +25102,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032128Z:e26e1309-1235-475c-879e-f7711ac6bd50"
+ "WESTUS:20200826T120402Z:5c7cddb5-ae45-47a9-908c-64fe2f53dbc7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:21:28 GMT"
+ "Wed, 26 Aug 2020 12:04:01 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43671,20 +25123,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43694,17 +25146,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9c8d18f4-b2a1-4b5e-b52c-163529a06449"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f433bdc4-6b6f-411f-8efd-1a0420dd9095"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "9936bc48-1645-4d67-8106-1fdf793cc81a"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43714,19 +25172,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032139Z:f433bdc4-6b6f-411f-8efd-1a0420dd9095"
+ "WESTUS:20200826T120402Z:fc1ef9d5-1b0b-4682-ac0e-ce206f18b845"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:21:38 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43735,20 +25193,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43758,17 +25216,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e4586ea3-df7d-4293-af2d-c3d723ac446f"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "039a7bb0-107a-4519-af9d-7bfc3810ad4e"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "ae6d5c52-c52d-4ee7-ae8f-3b73de9434f1"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43778,19 +25242,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032149Z:039a7bb0-107a-4519-af9d-7bfc3810ad4e"
+ "WESTUS:20200826T120402Z:48779c3f-59eb-4743-82bb-bffe0f73e4c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:21:48 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43799,20 +25263,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43822,17 +25286,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f6bd42a7-59c0-4265-916a-c1829da56b17"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5bcbd2fe-3e21-434f-931d-9851a03f249d"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "1998fb70-8c30-466f-85a1-0174e0a6bc9d"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43842,19 +25312,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032159Z:5bcbd2fe-3e21-434f-931d-9851a03f249d"
+ "WESTUS:20200826T120402Z:914f4d1f-fba7-4a9e-ba1e-5b0657992d75"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:21:58 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43863,20 +25333,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43886,17 +25356,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b6cd6ac2-af39-445e-8fa9-fb1af540d9c9"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c09606b5-a0f3-4aa5-9ebe-18d067bdffad"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "080b85a2-b68c-4fc3-8ba6-810270d3738f"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43906,19 +25382,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032209Z:c09606b5-a0f3-4aa5-9ebe-18d067bdffad"
+ "WESTUS:20200826T120402Z:68f5ad3a-0a5b-4ece-8098-15f4decad155"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:22:08 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43927,20 +25403,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -43950,17 +25426,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a387dab6-8b3f-458b-b0b4-a162ea752f0f"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "52fa96bb-6fa4-487b-beba-a988cc84fde1"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "14a60f91-7ad1-4ed8-99f2-0470b19fd266"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43970,19 +25452,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032219Z:52fa96bb-6fa4-487b-beba-a988cc84fde1"
+ "WESTUS:20200826T120402Z:8aae65a6-224b-4026-bb74-f14463d1fa46"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:22:19 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -43991,20 +25473,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44014,17 +25496,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "87d41431-3a0e-438d-9087-6f6b7c1147af"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f985ccd5-4257-4a03-935c-f12901d4c431"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "1f7fac1d-3b11-4456-a531-5a422573e3c4"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44034,19 +25522,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032229Z:f985ccd5-4257-4a03-935c-f12901d4c431"
+ "WESTUS:20200826T120402Z:d1c15c1a-fd16-4b6c-8b76-e3c77578a94c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:22:29 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44055,20 +25543,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44078,17 +25566,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e913c0a8-2c40-479b-9759-b62cdb476e9a"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a6940bfd-42c4-4ab0-972d-0c9e82cdaac9"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "8c533f9d-61db-4565-80f2-db40c6c90f13"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44098,19 +25592,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11985"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032239Z:a6940bfd-42c4-4ab0-972d-0c9e82cdaac9"
+ "WESTUS:20200826T120402Z:75380fff-1d70-460d-bb57-74d5d94ccc92"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:22:39 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44119,20 +25613,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44142,17 +25636,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0ce16a4b-4235-4891-a345-65b0b3a6fffc"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "08ff2e16-b22a-4250-9db5-65ba2f9b9792"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "dc0bd515-5646-4993-bc24-842ccc0a9051"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44162,19 +25662,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032249Z:08ff2e16-b22a-4250-9db5-65ba2f9b9792"
+ "WESTUS:20200826T120402Z:d4a6223a-6146-4b5b-b924-ca3a95a087ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:22:49 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44183,20 +25683,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44206,17 +25706,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d1fb6668-2b8f-43a0-a1c9-3d5c31f5774b"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "24ee46ad-a84f-49eb-9159-26c6c86c8a38"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "361e0e25-8570-4c45-bdac-a7ccee09abd1"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44226,19 +25732,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032259Z:24ee46ad-a84f-49eb-9159-26c6c86c8a38"
+ "WESTUS:20200826T120403Z:dc7496df-8a86-49f0-b77e-35738bf03640"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:22:59 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44247,20 +25753,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44270,39 +25776,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9d1d077d-3008-4c55-9e6b-d356ce5508bc"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "32848852-5371-4f29-8f86-7c3207db314c"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "5ac8051f-797e-4480-b1e0-d9610a39596a"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032309Z:32848852-5371-4f29-8f86-7c3207db314c"
+ "WESTUS:20200826T120403Z:9b2ca0f4-c6fe-4fd1-abf3-2836b0af751d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:23:09 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44311,20 +25823,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44334,17 +25846,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2b0cc775-e2f6-4200-9247-e6610907a63a"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "49a9be6d-3638-4cec-a665-37714845dca5"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "96c09420-34b8-45db-896c-266837093c84"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44354,19 +25872,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032320Z:49a9be6d-3638-4cec-a665-37714845dca5"
+ "WESTUS:20200826T120403Z:b11c3e99-e6e4-4d76-9b02-de6b1dc6581a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:23:19 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44375,20 +25893,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44398,17 +25916,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2e939198-8f94-4159-9925-7b6ca14833fe"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "cd2d97ac-3c40-4fa9-b29e-8db181500bd0"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "8beb1202-5996-4c6d-9f16-8c0d30a70bb8"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44418,19 +25942,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032330Z:cd2d97ac-3c40-4fa9-b29e-8db181500bd0"
+ "WESTUS:20200826T120403Z:dc95ce28-7f0f-48e6-9e6e-67c4b84737dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:23:29 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44439,20 +25963,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44462,17 +25986,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5f2058fd-a59c-4842-a475-b5687650f6e8"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "759cfe2a-94aa-4c2f-9e32-e34d2fe652ca"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "3c224253-a540-4fa8-af86-ef3126df15ba"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44482,19 +26012,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032340Z:759cfe2a-94aa-4c2f-9e32-e34d2fe652ca"
+ "WESTUS:20200826T120403Z:7a630639-f2bd-43bd-a80a-e610d93aaf84"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:23:39 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44503,20 +26033,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44526,17 +26056,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "94f8be04-f02b-4275-b326-547a0c4bfa1e"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "3d8d087a-496a-4d36-942d-47d0bf27e905"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "c001d59f-040b-4529-8814-6db3f0c256cd"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44546,19 +26082,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032350Z:3d8d087a-496a-4d36-942d-47d0bf27e905"
+ "WESTUS:20200826T120403Z:da238392-1b63-4343-8289-4362cd2497f3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:23:49 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44567,20 +26103,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44590,17 +26126,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "56b4128d-fb8c-4272-bb93-e0080bae2aca"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "174da0f2-00d8-4584-a3be-7d878add1571"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "ad078a38-ac02-4384-907d-c78494843c14"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44610,19 +26152,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032400Z:174da0f2-00d8-4584-a3be-7d878add1571"
+ "WESTUS:20200826T120403Z:669d38c8-9f23-46cc-9321-3dd0dc17b16c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:23:59 GMT"
+ "Wed, 26 Aug 2020 12:04:02 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44631,20 +26173,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44654,17 +26196,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a3c23677-1101-4dd5-9710-83b39a81fde7"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7fbdc32b-cd7f-45c4-b2f3-bdacd33134c4"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "e23626f8-b4f6-400a-bd0a-b8025308ce4d"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44674,19 +26222,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11976"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032410Z:7fbdc32b-cd7f-45c4-b2f3-bdacd33134c4"
+ "WESTUS:20200826T120403Z:79f798e3-515b-414e-84e4-d4ac414f2ccb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:24:09 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44695,20 +26243,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44718,17 +26266,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "d95300de-6909-4cf4-83c6-db8c5824b49b"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9aab0462-43de-4167-a5e0-c19daf1e5ff8"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "03b22b0f-3a7b-4e7b-80ea-8d662f2ea2d7"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44738,19 +26292,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11975"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032420Z:9aab0462-43de-4167-a5e0-c19daf1e5ff8"
+ "WESTUS:20200826T120403Z:08e84d17-9d29-4405-b531-2ff66219d2f0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:24:20 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44759,20 +26313,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44782,17 +26336,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9424b582-d8c0-444c-8251-6e9e6e284cde"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7ade83a1-c1c0-4320-8c42-d1fb10b6098f"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "fef65ae1-0d6e-45bd-884a-794eb7e1f06e"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44802,19 +26362,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11974"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032430Z:7ade83a1-c1c0-4320-8c42-d1fb10b6098f"
+ "WESTUS:20200826T120403Z:716036d1-34c2-47de-97ae-cd6f54160721"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:24:30 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44823,20 +26383,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44846,17 +26406,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "40fc8d7a-7fb2-41c5-a90a-c00f08b42b07"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "84e75371-e063-4b77-809d-14e29b984018"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "7c5bf416-5897-4139-9871-0d878b63f763"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44866,19 +26432,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11973"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032440Z:84e75371-e063-4b77-809d-14e29b984018"
+ "WESTUS:20200826T120403Z:9735e02c-01fb-4e7b-8566-2f2d34f9cef0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:24:40 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44886,21 +26452,21 @@
"Expires": [
"-1"
]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44910,17 +26476,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "db4a3c4c-6aea-43a5-80b9-d3af115ea335"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "3b4d37ec-9442-4304-8650-c3f4e2b2c8e3"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "ffbc2a05-da4c-4833-93d3-a6172be52f7f"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44930,19 +26502,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11972"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032450Z:3b4d37ec-9442-4304-8650-c3f4e2b2c8e3"
+ "WESTUS:20200826T120403Z:ad81f350-9189-4330-ab03-9d173384d613"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:24:50 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -44951,20 +26523,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -44974,17 +26546,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c154fabc-0c9c-4da0-acbf-ae4ef78095eb"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f1c8e52a-0e9f-48bb-b0e0-7ae2a0d071f7"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "8e15e34f-f062-46b3-ae14-ca78552f3e40"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44994,19 +26572,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11971"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032500Z:f1c8e52a-0e9f-48bb-b0e0-7ae2a0d071f7"
+ "WESTUS:20200826T120403Z:959deeeb-44f9-489f-b536-65b89e56ca48"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:25:00 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45015,20 +26593,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45038,17 +26616,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c23452ea-9e86-47aa-9b11-ee5edc0368ba"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9ef3db04-da36-4bee-910b-fc174d87923c"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "358dde91-4209-4ccc-adb8-85e19de5f484"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45058,19 +26642,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11970"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032510Z:9ef3db04-da36-4bee-910b-fc174d87923c"
+ "WESTUS:20200826T120403Z:17a52f71-7432-4bcc-bcdb-cb08cee2051a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:25:10 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45079,20 +26663,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45102,17 +26686,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "996d5b11-e137-4d0e-b3f3-6249f2285a2a"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ecb9677c-3197-42fb-bde3-c93ee707ec99"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "b4bf929e-5da2-44bb-8513-644d1c9cbeee"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45122,19 +26712,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11969"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032521Z:ecb9677c-3197-42fb-bde3-c93ee707ec99"
+ "WESTUS:20200826T120404Z:c4e0584d-6fea-4a83-8f5e-d42fd9f63975"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:25:20 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45143,20 +26733,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM4OTM2MDg2LTBiYjEtNDNhMi1iYmVkLWVkZjg5MTNjZjUwND9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45166,17 +26756,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/38936086-0bb1-43a2-bbed-edf8913cf504?api-version=2019-08-01"
],
"x-ms-request-id": [
- "c11bd1d0-3ed1-494d-b700-f269497b416d"
+ "38936086-0bb1-43a2-bbed-edf8913cf504"
],
"x-ms-correlation-request-id": [
- "0ca57cae-b90f-456a-85df-1c0ce6c91e11"
+ "5078cc08-0af2-4ff1-9423-890883f5db58"
],
"x-ms-arm-service-request-id": [
- "cda06294-d19a-485b-9a0e-a3d9ad6158d1"
+ "fa36ce94-5cdf-4626-b9f2-389965ce3056"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45186,19 +26776,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11968"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032531Z:0ca57cae-b90f-456a-85df-1c0ce6c91e11"
+ "WESTUS:20200826T120404Z:338fb885-8bf5-40f6-874c-819af72f8ce3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:25:30 GMT"
+ "Wed, 26 Aug 2020 12:04:03 GMT"
],
"Content-Length": [
- "30"
+ "191"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45207,20 +26797,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"vpnServerConfigurationResourceIds\": [\r\n \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604\"\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps6662?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM2NjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "609fc549-8a83-4c45-9721-ab4f55c886ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45230,17 +26826,26 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/b08fda78-887f-45e5-b581-0557e50d643d?api-version=2020-06-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "661f778c-e2da-4010-924e-3791172a14a6"
+ "b08fda78-887f-45e5-b581-0557e50d643d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/b08fda78-887f-45e5-b581-0557e50d643d?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "7730dcfa-1ecd-4b39-bde9-8831ca623607"
+ "9fd85dd8-214a-46e9-b8b8-30d2b34867af"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "38ba58bf-c785-4c87-ba27-a0092c3bbf88"
+ "4a864038-8fbd-48dc-93d3-fa70ad88bcb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45249,42 +26854,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032541Z:7730dcfa-1ecd-4b39-bde9-8831ca623607"
+ "WESTUS:20200826T120405Z:9fd85dd8-214a-46e9-b8b8-30d2b34867af"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:25:40 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 26 Aug 2020 12:04:04 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/b08fda78-887f-45e5-b581-0557e50d643d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2IwOGZkYTc4LTg4N2YtNDVlNS1iNTgxLTA1NTdlNTBkNjQzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45294,17 +26896,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "20a6c0e3-4dfa-4046-8110-3ff3479327d5"
+ "7ada1459-0f2e-4135-be68-97b12c3a5894"
],
"x-ms-correlation-request-id": [
- "3dd0952d-e0cf-425b-ad88-c8351b92a33d"
+ "4f82612f-87aa-46e7-a5e0-2e3e6bc9fc28"
],
"x-ms-arm-service-request-id": [
- "a5259609-52b0-45dc-9e9f-1b3a5d756537"
+ "6ec88183-fb05-4e3d-9d82-571ef9089c9a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45314,19 +26913,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11884"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032551Z:3dd0952d-e0cf-425b-ad88-c8351b92a33d"
+ "WESTUS:20200826T120415Z:4f82612f-87aa-46e7-a5e0-2e3e6bc9fc28"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:25:50 GMT"
+ "Wed, 26 Aug 2020 12:04:14 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45335,20 +26934,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/b08fda78-887f-45e5-b581-0557e50d643d?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2IwOGZkYTc4LTg4N2YtNDVlNS1iNTgxLTA1NTdlNTBkNjQzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45358,17 +26957,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/b08fda78-887f-45e5-b581-0557e50d643d?api-version=2020-06-01"
],
"x-ms-request-id": [
- "4a5a49fe-d2ef-47c4-bad2-b5a47f1e0231"
+ "b08fda78-887f-45e5-b581-0557e50d643d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/b08fda78-887f-45e5-b581-0557e50d643d?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "f0033322-952f-4ff6-b11e-edbb712d45f6"
+ "9fd85dd8-214a-46e9-b8b8-30d2b34867af"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "7080225f-c218-4e43-93c7-36098b13e5e7"
+ "4a864038-8fbd-48dc-93d3-fa70ad88bcb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45378,19 +26983,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11883"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032601Z:f0033322-952f-4ff6-b11e-edbb712d45f6"
+ "WESTUS:20200826T120415Z:e0a06ffa-df66-43a2-bdea-3193c35b869c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:26:01 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 26 Aug 2020 12:04:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45399,20 +27001,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"blobps1913\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d118d0e-9d2b-4b89-921d-a3c3f0d1aff6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "76"
]
},
"ResponseHeaders": {
@@ -45422,61 +27036,66 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "553c5694-cc76-4750-a3db-51c2f0744f16"
- ],
- "x-ms-correlation-request-id": [
- "ffb0824e-a486-4789-9900-4fb72f000a5c"
- ],
- "x-ms-arm-service-request-id": [
- "d78b50cc-dd8e-4949-bfe9-bd5a654c6a29"
+ "62c349a2-977d-406e-a035-f7cea10ac604"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "3320e347-03e8-43dd-a49d-085e8955a1a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032611Z:ffb0824e-a486-4789-9900-4fb72f000a5c"
+ "WESTUS:20200826T120415Z:3320e347-03e8-43dd-a49d-085e8955a1a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:26:11 GMT"
+ "Wed, 26 Aug 2020 12:04:15 GMT"
],
"Content-Length": [
- "30"
+ "22"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Storage/storageAccounts/blobps1913?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2Jsb2JwczE5MTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ffa5f8e4-5d64-462c-bd39-548c00979c72"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
]
},
"ResponseHeaders": {
@@ -45486,61 +27105,60 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/dfadeff5-10ff-4a66-9007-e6ac27819427?monitor=true&api-version=2019-06-01"
+ ],
"Retry-After": [
- "10"
+ "17"
],
"x-ms-request-id": [
- "64dada3c-629e-4e22-a3dd-8ef42428fdb2"
- ],
- "x-ms-correlation-request-id": [
- "5830c573-8c37-4989-ad69-f8d2fb7a0378"
- ],
- "x-ms-arm-service-request-id": [
- "0abb562f-a2cf-4ec3-b310-277f8d0765bc"
+ "dfadeff5-10ff-4a66-9007-e6ac27819427"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "20b57932-23f1-4d4f-a9e4-7d80b57b8043"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032621Z:5830c573-8c37-4989-ad69-f8d2fb7a0378"
+ "WESTUS:20200826T120417Z:20b57932-23f1-4d4f-a9e4-7d80b57b8043"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:26:21 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 26 Aug 2020 12:04:17 GMT"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "text/plain; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/dfadeff5-10ff-4a66-9007-e6ac27819427?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvZGZhZGVmZjUtMTBmZi00YTY2LTkwMDctZTZhYzI3ODE5NDI3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
]
},
"ResponseHeaders": {
@@ -45550,61 +27168,60 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "dd033fa5-ec4d-4f17-a529-ae6f0a98d73c"
- ],
- "x-ms-correlation-request-id": [
- "aea1c451-e853-40a2-a0de-69768a647975"
- ],
- "x-ms-arm-service-request-id": [
- "63623c1b-da03-4bb7-9ebc-9ac115a2fa5e"
+ "095f882b-4b50-4b4d-bfa3-4cb791c45cd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "31d4824b-2530-4987-9086-4dc0443e8b8e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032631Z:aea1c451-e853-40a2-a0de-69768a647975"
+ "WESTUS:20200826T120434Z:31d4824b-2530-4987-9086-4dc0443e8b8e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:26:31 GMT"
+ "Wed, 26 Aug 2020 12:04:34 GMT"
],
"Content-Length": [
- "30"
+ "1285"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Storage/storageAccounts/blobps1913\",\r\n \"name\": \"blobps1913\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-26T12:04:17.325909Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-26T12:04:17.325909Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-26T12:04:17.2477323Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://blobps1913.dfs.core.windows.net/\",\r\n \"web\": \"https://blobps1913.z4.web.core.windows.net/\",\r\n \"blob\": \"https://blobps1913.blob.core.windows.net/\",\r\n \"queue\": \"https://blobps1913.queue.core.windows.net/\",\r\n \"table\": \"https://blobps1913.table.core.windows.net/\",\r\n \"file\": \"https://blobps1913.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Storage/storageAccounts/blobps1913?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2Jsb2JwczE5MTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb1460f6-c1fc-46d9-aaf4-d75688c26120"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
]
},
"ResponseHeaders": {
@@ -45614,61 +27231,60 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "1c343da4-61f6-40ec-ae19-3be508f1c822"
- ],
- "x-ms-correlation-request-id": [
- "5cbf70fc-c3d7-40c9-8661-dc0890baf5b0"
- ],
- "x-ms-arm-service-request-id": [
- "56c74a1f-71b4-457e-acdf-5490a28da312"
+ "76289e43-6e2d-49f8-b9e7-660a192df85a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "345f5e5f-e2b8-481e-80ed-5aa77ff4f050"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032641Z:5cbf70fc-c3d7-40c9-8661-dc0890baf5b0"
+ "WESTUS:20200826T120435Z:345f5e5f-e2b8-481e-80ed-5aa77ff4f050"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:26:41 GMT"
+ "Wed, 26 Aug 2020 12:04:34 GMT"
],
"Content-Length": [
- "30"
+ "1285"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Storage/storageAccounts/blobps1913\",\r\n \"name\": \"blobps1913\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-26T12:04:17.325909Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-26T12:04:17.325909Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-26T12:04:17.2477323Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://blobps1913.dfs.core.windows.net/\",\r\n \"web\": \"https://blobps1913.z4.web.core.windows.net/\",\r\n \"blob\": \"https://blobps1913.blob.core.windows.net/\",\r\n \"queue\": \"https://blobps1913.queue.core.windows.net/\",\r\n \"table\": \"https://blobps1913.table.core.windows.net/\",\r\n \"file\": \"https://blobps1913.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Storage/storageAccounts/blobps1913/listKeys?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2Jsb2JwczE5MTMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07f04f1c-14b3-4291-9bf3-7d930438922e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
]
},
"ResponseHeaders": {
@@ -45678,61 +27294,63 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "39c10c81-9d4a-4713-98bb-d84a7893c6d9"
- ],
- "x-ms-correlation-request-id": [
- "0bc8607e-176d-43fb-bb96-7dca69697bac"
- ],
- "x-ms-arm-service-request-id": [
- "29cc48fb-a73b-43d3-88fc-46dfac7fc947"
+ "376f75ad-73dc-45fb-8c15-4d83d2c0ab60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d6148e5-d7f4-45fa-ab67-a1674a74fa1b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032651Z:0bc8607e-176d-43fb-bb96-7dca69697bac"
+ "WESTUS:20200826T120435Z:7d6148e5-d7f4-45fa-ab67-a1674a74fa1b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:26:51 GMT"
+ "Wed, 26 Aug 2020 12:04:34 GMT"
],
"Content-Length": [
- "30"
+ "288"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"dfTvl/1mEwHNRQmWHGgg/AIszGIZXKVYb76/yNP2I8Fhof2GLGPHP5nqNuiJlXMFU2vYUT50ddV0s1AGDPiESQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"5LESmWRNLaotNel/TTm6MIlpy+dJ4MLEDWevmhtwdHPiqH2LsFLHVaUDLopCR5xo5wTEPSiZy6/13OtDgqF4kw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2sVpnGateways/ps3649/getp2svpnconnectionhealthdetailed?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzVnBuR2F0ZXdheXMvcHMzNjQ5L2dldHAyc3ZwbmNvbm5lY3Rpb25oZWFsdGhkZXRhaWxlZD9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"vpnUserNamesFilter\": [],\r\n \"outputBlobSasUrl\": \"https://blobps1913.blob.core.windows.net/contps1913/emptyfile.txt?sv=2019-02-02&sr=b&sig=%2BmCrDe3W5FWOTHEv%2BS1Adc23M3RfUwAEOqH12dh8Oe0%3D&st=2020-08-26T11%3A04%3A37Z&se=2020-08-27T12%3A04%3A37Z&sp=rwd\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f89f3b3f-b66b-4a7a-949a-1916dd066e7d"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "261"
]
},
"ResponseHeaders": {
@@ -45742,17 +27360,20 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9b2887c6-a738-4304-8807-cd4a36d3dde4"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"x-ms-correlation-request-id": [
- "b92b3652-26b8-4639-b1db-bc322745adfc"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "d8d8d989-ee96-4d08-a708-9f2bf0c806e2"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45761,20 +27382,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032702Z:b92b3652-26b8-4639-b1db-bc322745adfc"
+ "WESTUS:20200826T120438Z:5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:27:01 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45783,20 +27404,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45806,17 +27427,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ecc10d9d-d1cf-485c-bd5b-b7b7526fa729"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "775649b3-8d6b-440d-9b75-aea157da3905"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "7b0078a0-d456-414e-9e3e-6621afaa4f36"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45826,19 +27453,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032712Z:775649b3-8d6b-440d-9b75-aea157da3905"
+ "WESTUS:20200826T120438Z:f1c03f8d-29cd-43a2-92f1-9b137114df87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:27:11 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45847,20 +27474,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45870,17 +27497,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "df4e1955-5ffa-40f4-bb5e-c746b8d187ed"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "0ed8a759-ac59-41e2-8c5b-5d00ee7cdec9"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "14e8f417-f5ed-4fbf-a299-29cf28522927"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45890,19 +27523,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032722Z:0ed8a759-ac59-41e2-8c5b-5d00ee7cdec9"
+ "WESTUS:20200826T120438Z:a8884466-2d43-436b-8360-df71f6adef5b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:27:21 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45911,20 +27544,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45934,17 +27567,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2ef19e1f-4c27-46b6-a9a7-c51281708378"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c908bc3b-19ed-4fcc-8986-8c6d3aadc6f7"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "7aab8097-65af-489e-bfe7-f045727fb596"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45954,19 +27593,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032732Z:c908bc3b-19ed-4fcc-8986-8c6d3aadc6f7"
+ "WESTUS:20200826T120438Z:d13c31b5-c808-4946-ab40-4ccd79820fb0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:27:31 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -45975,20 +27614,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -45998,17 +27637,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0a1dea78-c1a0-4634-93a8-567563bcb06e"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f5b23184-ec07-49fc-a3ba-cbb7525d6505"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "6b90f4dd-f211-437d-8cbc-481489cd0f0d"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46018,19 +27663,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032742Z:f5b23184-ec07-49fc-a3ba-cbb7525d6505"
+ "WESTUS:20200826T120438Z:04d0c929-7992-49e1-832f-ed5621699f75"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:27:42 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46039,20 +27684,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46062,17 +27707,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "936f0f3b-5d63-4b72-a51e-09c2e1a67726"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "96ca9fd9-3875-4acf-b13c-a93e1823335a"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "7a4efc91-72dc-44d5-b90c-6d135cab8bcc"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46082,19 +27733,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032752Z:96ca9fd9-3875-4acf-b13c-a93e1823335a"
+ "WESTUS:20200826T120439Z:c3851c67-8714-4254-93aa-9411ee40060d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:27:52 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46103,20 +27754,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46126,17 +27777,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "a06cfa3b-32e1-40ac-a887-24d67efa1985"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "46623f8e-4a05-4b13-9211-8e288449c926"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "e4e5053a-be1e-43a7-a665-e7daf3001316"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46146,19 +27803,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032802Z:46623f8e-4a05-4b13-9211-8e288449c926"
+ "WESTUS:20200826T120439Z:0ed7da72-7529-48c2-946c-47f344d9823b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:28:02 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46167,20 +27824,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46190,17 +27847,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "6ede3890-b1b4-42cf-8623-5d90a0aee0f8"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "a29e76d6-4c36-4bba-b25b-b877f9c1e10c"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9b27c644-f9c9-4dbb-8845-b7d51d762615"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46210,19 +27873,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032812Z:a29e76d6-4c36-4bba-b25b-b877f9c1e10c"
+ "WESTUS:20200826T120439Z:5bedbd13-74b4-4319-8552-083bff36e58c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:28:12 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46231,20 +27894,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46254,17 +27917,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "8a6cb5d3-fb1a-4c17-853c-a0153f3746d1"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "0b5a5726-4eb1-42c3-8cad-db6fb30d7164"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "6ce8e765-df6a-44a6-82d3-78c1ca245f5b"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46274,19 +27943,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032822Z:0b5a5726-4eb1-42c3-8cad-db6fb30d7164"
+ "WESTUS:20200826T120439Z:ee5fcae2-51d3-47cb-8943-6b992623cfc6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:28:22 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46295,20 +27964,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46318,17 +27987,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f129fff9-e63e-46ba-b0e1-e3161f1ee97e"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "981bee26-939e-4cf2-97c8-3ea4d25b083f"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "42d455f7-38a0-4c9f-8f3a-dc59ffc07a34"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46338,19 +28013,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032832Z:981bee26-939e-4cf2-97c8-3ea4d25b083f"
+ "WESTUS:20200826T120439Z:1eb3f5d5-013a-4655-a451-b36d8ef159df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:28:32 GMT"
+ "Wed, 26 Aug 2020 12:04:38 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46359,20 +28034,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46382,17 +28057,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "acb7f8b3-95f8-4e1c-993f-5194820fed27"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5abb81f4-2726-44bd-9c70-a4584e685851"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "a70357ca-b0bf-4043-b1b8-0170fcf3e4c0"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46402,19 +28083,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032842Z:5abb81f4-2726-44bd-9c70-a4584e685851"
+ "WESTUS:20200826T120439Z:3e287812-521f-48a4-8eac-925108d5e40b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:28:42 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46423,20 +28104,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46446,17 +28127,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "65dd672a-a070-4830-8c61-fd7f0543668e"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "875158ba-98f3-46cf-954f-cffb5e469bfb"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "41ce6377-6203-4ada-8e72-74e3f4f349f0"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46466,19 +28153,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032853Z:875158ba-98f3-46cf-954f-cffb5e469bfb"
+ "WESTUS:20200826T120439Z:6e5af8a9-95da-4717-9c68-cb930cec1b46"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:28:52 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46487,20 +28174,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46510,17 +28197,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ec77dac7-c498-4ff1-96cb-ad53a688c835"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2f918284-e88c-49e1-b9ad-08b60be31a65"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "3f46ba68-2856-44a9-9dad-92555a9f08b5"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46530,19 +28223,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032903Z:2f918284-e88c-49e1-b9ad-08b60be31a65"
+ "WESTUS:20200826T120439Z:2dbae900-b77d-4d03-99d8-eb21d0737994"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:02 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46551,20 +28244,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46574,17 +28267,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "43024a42-f339-47ec-bc97-b1c8ea77182c"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "72b1af42-9bc2-4024-9767-c927caa49cca"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9d25172d-781f-4dde-9ca6-a9d310ee4115"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46594,19 +28293,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032913Z:72b1af42-9bc2-4024-9767-c927caa49cca"
+ "WESTUS:20200826T120439Z:fca8bb46-f5c2-42bf-a647-996d8ae63b00"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:12 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46615,20 +28314,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46638,36 +28337,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "c70b3637-05ca-49fb-b088-3fe5b95e0b72"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2477ee0e-e019-492f-9f3b-59b86199c86d"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "8b6e26ff-4b66-4038-aba9-20bba6a05f4a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032923Z:2477ee0e-e019-492f-9f3b-59b86199c86d"
+ "WESTUS:20200826T120439Z:1741c882-a73c-4210-aa88-a83320284410"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:22 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
- "29"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46676,20 +28384,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzNiYTU5MjgzLWM3MTUtNGMxNi1iODBmLWRmM2M3ZTM4NzQ0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46700,22 +28408,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
+ ],
+ "Retry-After": [
+ "10"
],
"x-ms-request-id": [
- "3ba59283-c715-4c16-b80f-df3c7e387442"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/3ba59283-c715-4c16-b80f-df3c7e387442?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "136d5fe1-3d5b-4a9b-b587-7ca2583a0185"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "d3e14c26-2a3a-4256-ba0b-5192846b76c6"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46725,16 +28433,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
+ "11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032923Z:221da92a-19dd-473f-94cf-34f3e00beba0"
+ "WESTUS:20200826T120439Z:2fec9570-4192-473f-b392-6ca23ec18efb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:22 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
+ ],
+ "Content-Length": [
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -46743,20 +28454,20 @@
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46767,22 +28478,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46792,16 +28503,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:0b85cb80-7464-4c67-990d-6984ec82f983"
+ "WESTUS:20200826T120439Z:8d0429e1-bf6f-4926-a34c-040121a7511e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:23 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -46817,16 +28528,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46837,22 +28548,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46862,16 +28573,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11982"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:708b45eb-75a0-49e0-8ca1-44293a44ea51"
+ "WESTUS:20200826T120439Z:d29a6922-9d77-41cb-bd81-e2dc8a2120c8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:23 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -46887,16 +28598,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46907,22 +28618,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46932,16 +28643,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:7dd8a905-5f9c-43e8-a902-dd1f758e9865"
+ "WESTUS:20200826T120439Z:c4af9201-b31e-4873-907b-e42d12af2a46"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -46957,16 +28668,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -46977,22 +28688,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47002,16 +28713,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:59ce1cc0-5531-482b-9b99-97c626f6f3b4"
+ "WESTUS:20200826T120440Z:0d83fd2d-4830-402f-929f-dccda2f8364f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -47027,16 +28738,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47047,22 +28758,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47072,16 +28783,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:283659ef-687c-4469-b724-26825cbc10c4"
+ "WESTUS:20200826T120440Z:ac868637-ea37-4e47-b8e2-ee4bdff2bfbd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -47097,16 +28808,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47117,22 +28828,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47142,16 +28853,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:4c96a06a-057d-4ef1-9503-3bcebe13bcb8"
+ "WESTUS:20200826T120440Z:a5e5cd2f-1b39-45cd-8a82-9f48d8bff0e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -47167,16 +28878,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47187,22 +28898,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47212,16 +28923,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:bf99612b-320a-45e2-a3a8-7faca02ef8a9"
+ "WESTUS:20200826T120440Z:a497fa1a-35b9-446b-9c32-8f5341792fb2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -47237,16 +28948,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47257,22 +28968,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47282,16 +28993,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11976"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:90d244df-5e54-4bdd-ab49-d7ba76ed523f"
+ "WESTUS:20200826T120440Z:b302b5e9-b7b5-47c7-b5d2-6daac00b7e5a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -47307,16 +29018,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47327,22 +29038,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47352,16 +29063,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11975"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:15d3d914-5945-4a68-a879-218027d5fbeb"
+ "WESTUS:20200826T120440Z:d64887f0-c27a-4f57-905c-a829fd536d98"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:39 GMT"
],
"Content-Length": [
"4"
@@ -47377,16 +29088,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47397,22 +29108,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47422,16 +29133,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11974"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:c49f6e3e-a004-4d6c-85cb-3d9b3468274c"
+ "WESTUS:20200826T120440Z:1e9a1b62-eb86-49d7-b0d7-2eb678010f07"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47447,16 +29158,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47467,22 +29178,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47492,16 +29203,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11973"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:f70e5383-f0d3-4b97-9782-58f337805c10"
+ "WESTUS:20200826T120440Z:ae7dc68b-917f-489d-9241-2fe7681db3c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47517,16 +29228,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47537,22 +29248,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47562,16 +29273,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11972"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:9843e526-da3c-4b15-afb1-91f4d050ce75"
+ "WESTUS:20200826T120440Z:c04d6238-ba87-42f9-a923-53e92d8d6994"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47587,16 +29298,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47607,22 +29318,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47632,16 +29343,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11971"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032924Z:93910dfb-a3dd-41d0-9731-e9f109070770"
+ "WESTUS:20200826T120440Z:aa986725-27a0-41f6-97cb-6753e579a405"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47657,16 +29368,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47677,22 +29388,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47702,16 +29413,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11970"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:037769dc-6d61-4727-a119-0b27ca9d273c"
+ "WESTUS:20200826T120440Z:39381b65-62a5-41eb-b98c-36c46fd81119"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47727,16 +29438,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47747,22 +29458,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47772,16 +29483,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11969"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:2af24d77-47f2-4587-acb9-33d3e1e245e0"
+ "WESTUS:20200826T120440Z:496c7d9e-7050-4886-acd1-fe2f092b3196"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:24 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47797,16 +29508,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47817,22 +29528,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47842,16 +29553,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11968"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:1c99a288-f65a-404c-a947-c7d70b1f0163"
+ "WESTUS:20200826T120440Z:41743a9b-c855-480f-99ed-592503591140"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
"4"
@@ -47867,16 +29578,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiMWNmOGU4LThlM2EtNDkyYi1iMjFkLWQ5MDBiYTBjMzljMj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47887,22 +29598,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
- "Retry-After": [
- "10"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2?api-version=2019-08-01"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "8b1cf8e8-8e3a-492b-b21d-d900ba0c39c2"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "5a0abe17-5469-47e0-90fa-94a573edccb5"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "70def6a2-c480-4e18-b5a1-e857edda9cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47912,19 +29617,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11967"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:48e7ded6-efcd-4e89-98c9-4fd026391f25"
+ "WESTUS:20200826T120440Z:7c96d121-2328-44a0-962f-6d334008e320"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:04:40 GMT"
],
"Content-Length": [
- "4"
+ "222"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -47933,20 +29638,26 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"sasUrl\": \"https://blobps1913.blob.core.windows.net/contps1913/emptyfile.txt?sv=2019-02-02&sr=b&sig=%2BmCrDe3W5FWOTHEv%2BS1Adc23M3RfUwAEOqH12dh8Oe0%3D&st=2020-08-26T11%3A04%3A37Z&se=2020-08-27T12%3A04%3A37Z&sp=rwd\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/p2svpnGateways/ps3649?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcDJzdnBuR2F0ZXdheXMvcHMzNjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "828fdab9-0ca4-4e58-9b4a-a9e0d3b69367"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -47957,22 +29668,25 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "75d18d56-287a-4f5d-b9c0-11025e57ac85"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "2f3e3199-1d27-4676-9b7a-976ce798e401"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "c41953eb-3884-4838-8466-e1a91134780e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47981,42 +29695,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:306a92fa-0849-4a67-a3be-51b0791c5cb5"
+ "WESTUS:20200826T120441Z:2f3e3199-1d27-4676-9b7a-976ce798e401"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 26 Aug 2020 12:04:41 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "null",
+ "ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48026,23 +29737,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "a9bd478c-45ed-4aa2-9c15-abab2dcaaf99"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "b672b92a-2152-4c77-8659-883515760524"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "674c9bb1-6c49-4f15-a874-a2fc9cf8c8a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48052,19 +29757,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:eaf33626-72de-4a80-924b-d43e0f99a676"
+ "WESTUS:20200826T120451Z:b672b92a-2152-4c77-8659-883515760524"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:04:51 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48073,20 +29778,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48096,23 +29801,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "19b701c4-8474-49fc-a855-0a0cd86859c1"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "0b8c0c3a-e7b2-474a-8673-c10094985560"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "f0495cba-a650-4e1c-bfd1-d7160b78fedf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48122,19 +29821,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:e6023297-7767-47e8-b25b-343d67edf309"
+ "WESTUS:20200826T120501Z:0b8c0c3a-e7b2-474a-8673-c10094985560"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:05:01 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48143,20 +29842,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48166,23 +29865,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "b3fc32f6-ec7f-4529-aa23-75ec2f8b5b47"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "f240a5e5-3d42-4e9b-ad3d-cfccb241d567"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "68a37a22-a9f8-404e-82bc-b8fe02fb7bad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48192,19 +29885,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:22db7f3c-d4c4-4320-a8fd-9d4836e962fc"
+ "WESTUS:20200826T120521Z:f240a5e5-3d42-4e9b-ad3d-cfccb241d567"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:05:21 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48213,20 +29906,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48236,23 +29929,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "e59c71a5-b0a3-409c-a0eb-aed811d09d0a"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "dd993e6b-9983-440b-a420-6c2892032c5d"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "a1b2860e-9aa7-452e-bf04-577bae415592"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48262,19 +29949,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:505d410e-c9b5-424d-8a76-3738c5b5bf74"
+ "WESTUS:20200826T120542Z:dd993e6b-9983-440b-a420-6c2892032c5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:05:41 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48283,20 +29970,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48306,23 +29993,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "47416e0b-bc52-40b9-b933-f03e7169a112"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "502f5f97-775a-4dec-85f8-90d2e5c50ee6"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "bdb7f4a1-cad1-42b4-8a6d-912a0d37bb7c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48332,19 +30013,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:5c1ff09c-f080-4f11-a8f6-bac9fd285700"
+ "WESTUS:20200826T120622Z:502f5f97-775a-4dec-85f8-90d2e5c50ee6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:06:21 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48353,20 +30034,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48376,23 +30057,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "36e999e3-de16-4393-9bd1-c58b9145bd02"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "f1f6ca24-90a0-4bfe-88d4-7f8f84731bb3"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "f263a910-e5df-4f9b-82ef-b553aa4e4309"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48402,19 +30077,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:1b947aa2-6229-4a16-a44d-9aa93ec54878"
+ "WESTUS:20200826T120702Z:f1f6ca24-90a0-4bfe-88d4-7f8f84731bb3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:07:01 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48423,20 +30098,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48446,23 +30121,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "5e6ea14a-1ffd-4bcb-b452-a967322c101e"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "37de1c46-9fd9-475d-b915-ef359886ae1c"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "7836a241-74a4-450a-b7ae-fc6caa8918f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48472,19 +30141,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:1af9aa44-4715-4e8c-8f39-f75cd1de9464"
+ "WESTUS:20200826T120842Z:37de1c46-9fd9-475d-b915-ef359886ae1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:08:41 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48493,20 +30162,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48516,23 +30185,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
- ],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "b66ea4ba-e6fc-4bd2-86d4-c00b0f4c0958"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "344931df-6bf3-4251-810b-96be8601eff6"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "e9eeec57-568f-4a67-bea9-b106af3cb6e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48542,19 +30205,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:ae802c41-c98f-47d0-9125-e6ace2745d6b"
+ "WESTUS:20200826T121022Z:344931df-6bf3-4251-810b-96be8601eff6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:10:22 GMT"
],
"Content-Length": [
- "4"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48563,20 +30226,20 @@
"-1"
]
},
- "ResponseBody": "null",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYwZmZmZTRiLTAzZTEtNGJiNS1iMzk2LTZjZDJiODhjNGZmYj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48586,17 +30249,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb?api-version=2019-08-01"
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "60fffe4b-03e1-4bb5-b396-6cd2b88c4ffb"
+ "5fe2307b-457d-4f8b-8ade-df99f800c8d6"
],
"x-ms-correlation-request-id": [
- "081cfbdb-e70f-4bdd-b063-ec5ed60c9248"
+ "e5d54153-9302-4e64-b3ee-1810f4eccfb7"
],
"x-ms-arm-service-request-id": [
- "9389a92f-cef3-4ac8-a75e-aa21db969d7a"
+ "cd7a5f9f-8d4a-47ea-ac32-313bdfb0785e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48606,19 +30269,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032925Z:627b3768-4767-4447-91fb-f7ea99b72417"
+ "WESTUS:20200826T121202Z:e5d54153-9302-4e64-b3ee-1810f4eccfb7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:25 GMT"
+ "Wed, 26 Aug 2020 12:12:02 GMT"
],
"Content-Length": [
- "47"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48627,26 +30290,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"vpnServerConfigurationResourceIds\": []\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/vpnServerConfigurations/ps5203?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHM1MjAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "e4baf082-e39d-4230-9e4d-9d8518bbb5dd"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48656,26 +30313,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/91d8a5f0-c128-4078-b70d-6017e6e522c6?api-version=2020-04-01"
- ],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "91d8a5f0-c128-4078-b70d-6017e6e522c6"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/91d8a5f0-c128-4078-b70d-6017e6e522c6?api-version=2020-04-01"
+ "1264db71-ffe2-427a-8d98-f86bb475e25a"
],
"x-ms-correlation-request-id": [
- "2961f0e1-d4fd-4a36-88d9-7c01fda50214"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "569ffcf5-850a-4af1-822a-c7b360328408"
],
"x-ms-arm-service-request-id": [
- "728dbea7-f9b5-43d3-91da-d2cece0faa22"
+ "97834313-112e-4198-b25b-2bd375dcf1ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48684,39 +30332,42 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032927Z:2961f0e1-d4fd-4a36-88d9-7c01fda50214"
+ "WESTUS:20200826T121342Z:569ffcf5-850a-4af1-822a-c7b360328408"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:27 GMT"
+ "Wed, 26 Aug 2020 12:13:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/91d8a5f0-c128-4078-b70d-6017e6e522c6?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkxZDhhNWYwLWMxMjgtNDA3OC1iNzBkLTYwMTdlNmU1MjJjNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48726,14 +30377,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "100"
+ ],
"x-ms-request-id": [
- "f1c29919-e1a9-4dff-b09e-4603bb4d9bfa"
+ "d5de2608-ac6e-4c03-b535-b11704bf4188"
],
"x-ms-correlation-request-id": [
- "5bddd2a2-b78b-4d67-a106-1d8a172b44a0"
+ "f52a80cc-0247-4a45-b4b0-75e34dab5d6e"
],
"x-ms-arm-service-request-id": [
- "addc386c-f6b6-40a9-9c91-5ad8d7ece452"
+ "85c5fce9-ea90-403f-bed3-a2f33451440f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48743,19 +30397,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032937Z:5bddd2a2-b78b-4d67-a106-1d8a172b44a0"
+ "WESTUS:20200826T121522Z:f52a80cc-0247-4a45-b4b0-75e34dab5d6e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:37 GMT"
+ "Wed, 26 Aug 2020 12:15:22 GMT"
],
"Content-Length": [
- "29"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48764,20 +30418,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/91d8a5f0-c128-4078-b70d-6017e6e522c6?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzkxZDhhNWYwLWMxMjgtNDA3OC1iNzBkLTYwMTdlNmU1MjJjNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48787,23 +30441,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/91d8a5f0-c128-4078-b70d-6017e6e522c6?api-version=2020-04-01"
+ "Retry-After": [
+ "100"
],
"x-ms-request-id": [
- "91d8a5f0-c128-4078-b70d-6017e6e522c6"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/91d8a5f0-c128-4078-b70d-6017e6e522c6?api-version=2020-04-01"
+ "51dec05f-5a9e-4ec1-ac03-20bf12dae941"
],
"x-ms-correlation-request-id": [
- "2961f0e1-d4fd-4a36-88d9-7c01fda50214"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "57a4fa90-9af9-4d69-86f6-6b044e3ae007"
],
"x-ms-arm-service-request-id": [
- "728dbea7-f9b5-43d3-91da-d2cece0faa22"
+ "e273ba9a-77b6-4b28-9e3d-4a2622840fec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48813,16 +30461,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032937Z:c421b41e-e57c-4981-9e55-1f8de48b9d2c"
+ "WESTUS:20200826T121703Z:57a4fa90-9af9-4d69-86f6-6b044e3ae007"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:37 GMT"
+ "Wed, 26 Aug 2020 12:17:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48831,26 +30482,20 @@
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualHubs/ps8877?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM4ODc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "f97c72f5-9c57-4956-8166-4b25fc41721e"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48860,26 +30505,14 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01"
- ],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "447e427d-25c9-4f09-a486-f4b8314577fc"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01"
+ "ad9271eb-57f7-450a-b50d-5a307a7c01f2"
],
"x-ms-correlation-request-id": [
- "75a0372f-3bd8-4359-9234-feee35670738"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
+ "3f53ef89-432c-4ae8-b574-e6aeaa8a8e98"
],
"x-ms-arm-service-request-id": [
- "3205a5c4-1fd8-4f9f-89e5-daadceff51aa"
+ "52e5d9aa-25e9-45f8-843f-2f491bd61ae8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48888,39 +30521,42 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032938Z:75a0372f-3bd8-4359-9234-feee35670738"
+ "WESTUS:20200826T121843Z:3f53ef89-432c-4ae8-b574-e6aeaa8a8e98"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:37 GMT"
+ "Wed, 26 Aug 2020 12:18:42 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzc1ZDE4ZDU2LTI4N2EtNGY1ZC1iOWMwLTExMDI1ZTU3YWM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48930,17 +30566,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01"
],
"x-ms-request-id": [
- "0f3f9179-8def-4dea-b5ed-8eec77ebd343"
+ "75d18d56-287a-4f5d-b9c0-11025e57ac85"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/75d18d56-287a-4f5d-b9c0-11025e57ac85?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "931643fd-b43b-40f4-810d-312a20bf376d"
+ "2f3e3199-1d27-4676-9b7a-976ce798e401"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "9efb694d-0e5f-4936-b16e-398fc0130f6c"
+ "c41953eb-3884-4838-8466-e1a91134780e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48950,19 +30592,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032949Z:931643fd-b43b-40f4-810d-312a20bf376d"
+ "WESTUS:20200826T121843Z:1c6c9c3c-4600-497f-8e72-9cbd3fb5e66d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:49 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -48971,20 +30610,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -48994,17 +30633,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "5a4af5c3-68f3-41bd-9aab-091b0ecf0f65"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "adf22ccd-dd56-407c-a3f0-a946f04c4e51"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "5944161f-586c-43ec-84ed-07a87ac3d984"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49017,16 +30662,16 @@
"11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T032959Z:adf22ccd-dd56-407c-a3f0-a946f04c4e51"
+ "WESTUS:20200826T121844Z:90ebb3be-17a1-49b5-84e3-c2557c02add6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:29:58 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49035,20 +30680,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49058,17 +30703,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "def9eb3a-4e57-426d-a1b8-310c6d9065aa"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "ec2ad9a7-b13a-4ea3-bd9f-eb4c8cac0f06"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "5372b44b-a0e0-4cb3-aa67-1c691025d995"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49081,16 +30732,16 @@
"11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033009Z:ec2ad9a7-b13a-4ea3-bd9f-eb4c8cac0f06"
+ "WESTUS:20200826T121844Z:44f1a8c5-7c07-4f9d-9a5f-072ea8b359ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:30:09 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49099,20 +30750,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49122,17 +30773,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0d067005-8f88-42b1-8b77-e9f4a1829e98"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "e3a39c8c-888d-4656-b8f7-672a22a149dd"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "a67dbb3d-54f9-42f7-ac3a-d924721db571"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49145,16 +30802,16 @@
"11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033019Z:e3a39c8c-888d-4656-b8f7-672a22a149dd"
+ "WESTUS:20200826T121844Z:ced79092-77b7-4101-a0a3-31ef9e12a492"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:30:19 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49163,20 +30820,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49186,17 +30843,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e44bc562-aaed-4362-8e53-dfbfabb7c8e3"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "abf966a2-f145-41b0-b305-fe9cfe4ec3d4"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "45d0cc53-442b-4aca-bada-24bf6e6685c4"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49209,16 +30872,16 @@
"11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033029Z:abf966a2-f145-41b0-b305-fe9cfe4ec3d4"
+ "WESTUS:20200826T121844Z:f6f7d615-d6cf-4a2f-9592-32489e030cf7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:30:29 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49227,20 +30890,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49250,17 +30913,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9f8c1d27-bccc-46b3-a3b8-2e65348e286b"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "1bcef965-3a90-4b0b-919a-9b99d6346eea"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "939b34b9-3ff4-4f70-984f-3934d8599655"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49273,16 +30942,16 @@
"11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033039Z:1bcef965-3a90-4b0b-919a-9b99d6346eea"
+ "WESTUS:20200826T121844Z:973fc00f-1d8a-4c05-b864-f6cb61da8e17"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:30:39 GMT"
+ "Wed, 26 Aug 2020 12:18:43 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49291,20 +30960,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49314,17 +30983,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "08ab1669-9a79-46d1-bf39-793c6282a4dc"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f0f94868-a3a3-4c2f-bb97-c114fc938771"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "080f0c1f-07fa-428a-94c0-31b2211c932b"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49337,16 +31012,16 @@
"11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033049Z:f0f94868-a3a3-4c2f-bb97-c114fc938771"
+ "WESTUS:20200826T121844Z:ef5d6faa-7c66-460d-b6e2-3cc91950b9a7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:30:49 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49355,20 +31030,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49378,17 +31053,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c706f879-6f8d-46ce-b577-03f0d8387388"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "94c55490-d1ce-4a7f-b2ea-6c83564b984f"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "55bb445f-1db6-4d21-8776-ca4ec3179e41"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49401,16 +31082,16 @@
"11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033059Z:94c55490-d1ce-4a7f-b2ea-6c83564b984f"
+ "WESTUS:20200826T121844Z:9c78cea4-c681-40f0-b1de-165e2fec021f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:30:59 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49419,20 +31100,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49442,17 +31123,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "4f62f0bc-bb24-4c73-8188-75a89f410907"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "21b6f26d-b3d3-4e17-ad17-e0b9bfcb448a"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "09e07cb8-f99b-4c9c-a4c8-0934de0216f4"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49465,16 +31152,16 @@
"11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033109Z:21b6f26d-b3d3-4e17-ad17-e0b9bfcb448a"
+ "WESTUS:20200826T121844Z:746bd2a2-e36c-4e08-aa49-7c49e6ffa078"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:31:09 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49483,20 +31170,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49506,17 +31193,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "177f080e-bdb5-4df5-94b5-c70d1be8644f"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9049e38e-ef4d-4916-8986-53f9e6b181d2"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "ec3e8e80-6eef-4328-b184-4b5ce2ea117f"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49529,16 +31222,16 @@
"11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033119Z:9049e38e-ef4d-4916-8986-53f9e6b181d2"
+ "WESTUS:20200826T121844Z:4512a23c-b983-41ee-9ed2-9dd50b4046c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:31:19 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49547,20 +31240,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49570,17 +31263,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b0bd3846-2824-49ec-a8de-5acb0ce92942"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "1886da7f-7170-4153-a21b-e05c779e05c5"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "689e6058-0f75-47a8-92f1-4b9e4feea1d9"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49593,16 +31292,16 @@
"11989"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033129Z:1886da7f-7170-4153-a21b-e05c779e05c5"
+ "WESTUS:20200826T121844Z:272b20a7-89b2-4b22-a803-997fadad4aba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:31:29 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49611,20 +31310,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49634,17 +31333,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ccbd5792-7a80-4d9e-8878-6430976b97a3"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "98b817da-3423-4ec0-b29d-a71ab69ba0da"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "2b8119ac-a347-420e-a322-37f877e02d69"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49657,16 +31362,16 @@
"11988"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033140Z:98b817da-3423-4ec0-b29d-a71ab69ba0da"
+ "WESTUS:20200826T121844Z:036bbe1e-a99d-4796-a774-c21089f680a9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:31:40 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49675,20 +31380,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49698,17 +31403,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "056d53a1-1cb3-44c8-be38-15cfa29944e3"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "7a6a85ca-6333-4c48-979d-6bdbb838871d"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "5230d802-636f-4fcf-aae7-2b03ce094f7f"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49721,16 +31432,16 @@
"11987"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033150Z:7a6a85ca-6333-4c48-979d-6bdbb838871d"
+ "WESTUS:20200826T121844Z:84b7fcda-4c2d-41a9-9ce3-110ceb6f93b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:31:49 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49739,20 +31450,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49762,17 +31473,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "c84064b1-aff7-40f8-858c-200503c2ab01"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4036eddd-5700-4999-90d0-33b3f300f7ec"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "169f9f7f-3174-4946-af0c-a3fc2d58b635"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49785,16 +31502,16 @@
"11986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033200Z:4036eddd-5700-4999-90d0-33b3f300f7ec"
+ "WESTUS:20200826T121845Z:e05836dc-ab94-4624-a3fa-bfbd93f146f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:31:59 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49803,20 +31520,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49826,17 +31543,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "212957e8-8f9d-45ab-b401-bd4988aaca6a"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b75a4c84-c1b5-4ba5-a83c-0b1ca04ea228"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "46b8662c-3d0d-47d7-9d17-fc0898051cea"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49849,16 +31572,16 @@
"11985"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033210Z:b75a4c84-c1b5-4ba5-a83c-0b1ca04ea228"
+ "WESTUS:20200826T121845Z:ec755210-bdc9-4009-a7f5-15c865a6fab6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:32:09 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49867,20 +31590,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49890,17 +31613,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e69d57df-246e-4245-814a-c7f350b6bf8d"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "67bfe3ab-2698-4ae2-9694-f45ecf4c9b4a"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "f87d41e0-fa40-47c6-9f58-c369ce8ada25"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49913,16 +31642,16 @@
"11984"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033220Z:67bfe3ab-2698-4ae2-9694-f45ecf4c9b4a"
+ "WESTUS:20200826T121845Z:ac12d635-cb80-4c73-8de1-b6bc6471b620"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:32:19 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49931,20 +31660,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -49954,17 +31683,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b95556e1-c359-41f3-87b5-6f625a3eea96"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "beb78424-ddc8-431f-9f9a-360c9a6029cb"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "b51ea2dc-1d53-48f7-9065-8c961b7c65a6"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -49977,16 +31712,16 @@
"11983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033230Z:beb78424-ddc8-431f-9f9a-360c9a6029cb"
+ "WESTUS:20200826T121845Z:77a5fcdd-cab8-4e16-8d63-febe16d03f61"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:32:29 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -49995,20 +31730,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50018,17 +31753,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "f7b857a0-3fb5-4096-9d47-87e63b395bad"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "5f807860-f60b-4f55-bb12-2913110cd5b8"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "9d7f8e89-c243-4090-8f67-61b91418b823"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50041,16 +31782,16 @@
"11982"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033240Z:5f807860-f60b-4f55-bb12-2913110cd5b8"
+ "WESTUS:20200826T121845Z:3c701023-de56-445f-b545-357fa80dcf1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:32:39 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50059,20 +31800,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50082,17 +31823,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "ee26428e-b40f-4274-acdf-63a8cdc69bb6"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "b40e8c71-2e93-4c28-b225-cb304b225868"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "b1bc3555-7dd5-4d25-a925-000838afde42"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50105,16 +31852,16 @@
"11981"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033250Z:b40e8c71-2e93-4c28-b225-cb304b225868"
+ "WESTUS:20200826T121845Z:5fffee33-067f-4206-9474-5ec1381aac60"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:32:49 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50123,20 +31870,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50146,17 +31893,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b1626e48-8268-4424-8c80-2ce48a2ecbbf"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "093fb67d-86e0-45b9-8a20-7bed32df6866"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "763c4a98-efb9-4e6c-82bf-f1ffbd281fa6"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50169,16 +31922,16 @@
"11980"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033300Z:093fb67d-86e0-45b9-8a20-7bed32df6866"
+ "WESTUS:20200826T121845Z:340d4697-f992-455b-bd24-e7ba2db7e517"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:32:59 GMT"
+ "Wed, 26 Aug 2020 12:18:44 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50187,20 +31940,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50210,17 +31963,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "0a429ebf-0261-4088-84a5-585a3c3cd88e"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "9cfb279f-3762-4b31-b84b-73808e3d6875"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "64f2ee39-6597-41b1-a68f-5223ac5cebea"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50233,16 +31992,16 @@
"11979"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033310Z:9cfb279f-3762-4b31-b84b-73808e3d6875"
+ "WESTUS:20200826T121845Z:37bb5bf7-1af7-467c-9605-20a77171f8a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:33:10 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50251,20 +32010,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50274,17 +32033,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "b4505109-45ed-48e6-b913-ce114740c5e7"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "f8dc9906-a4b7-49d9-b3a3-b57e00125010"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "92a9711a-dd23-4095-9080-b31e467ca4b3"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50297,16 +32062,16 @@
"11978"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033320Z:f8dc9906-a4b7-49d9-b3a3-b57e00125010"
+ "WESTUS:20200826T121845Z:b5e83565-1e92-402e-b7ec-b9425aea6f78"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:33:20 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50315,20 +32080,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50338,17 +32103,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "3d1ac214-a148-4424-b476-6e7195609570"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "2d20437d-c85e-432a-986c-d44a0457f60b"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "29922ecf-65fb-45b2-a3ff-66ec7c0696d3"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50361,16 +32132,16 @@
"11977"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033330Z:2d20437d-c85e-432a-986c-d44a0457f60b"
+ "WESTUS:20200826T121845Z:ad563e0e-4413-4541-99dc-797161265528"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:33:30 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50379,20 +32150,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50402,17 +32173,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "59e3b7a6-c790-4ec6-949d-b56285b86dea"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "1d3b4de7-1595-49b5-84f3-50a33d1e5c77"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "67da2042-c18f-4a4b-a16c-8030a091dfbb"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50425,16 +32202,16 @@
"11976"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033341Z:1d3b4de7-1595-49b5-84f3-50a33d1e5c77"
+ "WESTUS:20200826T121845Z:64d171ad-d0c1-46a5-89bd-c3dd269ec420"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:33:40 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50443,20 +32220,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50466,39 +32243,45 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "e9b6d0e6-c889-455e-865d-0dbadaf8df4c"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "84995c07-6c94-4773-9453-52209f179f09"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "7eaa57e2-9ef2-4ece-8a83-d82794e92629"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033351Z:84995c07-6c94-4773-9453-52209f179f09"
+ "WESTUS:20200826T121845Z:13582a3e-e887-4e33-a93f-4d32d9f685be"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:33:51 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50507,20 +32290,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50530,17 +32313,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "68fae2a7-3735-4f17-b864-3dbca8b5a815"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "4ebf2bf7-bfba-43ef-91be-5eb9808e216c"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "de8106ed-ca63-4147-bbfb-a552b06f6052"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50553,16 +32342,16 @@
"11974"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033401Z:4ebf2bf7-bfba-43ef-91be-5eb9808e216c"
+ "WESTUS:20200826T121845Z:4faf29c3-c5ce-4a90-9194-dbafc0413690"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:34:01 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50571,20 +32360,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50594,17 +32383,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "9387a36d-e84a-4f8d-a142-825405b52643"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-correlation-request-id": [
- "c58d6f25-386b-47fb-aa51-12af7f94eacd"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "db9910f9-13fb-4b93-b6ca-f206ad74d7d0"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50617,16 +32412,16 @@
"11973"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033411Z:c58d6f25-386b-47fb-aa51-12af7f94eacd"
+ "WESTUS:20200826T121845Z:16ba1892-a4ca-48bd-b4e7-7257060f3898"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:34:11 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "4"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50635,20 +32430,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "null",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E3NzdkNzk2LWIwZjMtNDljNi1iOGRhLWIwYzJmMjg5NWU0Mj9hcGktdmVyc2lvbj0yMDE5LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50658,17 +32453,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/a777d796-b0f3-49c6-b8da-b0c2f2895e42?api-version=2019-08-01"
],
"x-ms-request-id": [
- "d158d878-91b5-4f4a-bf34-773c86af2f3d"
+ "a777d796-b0f3-49c6-b8da-b0c2f2895e42"
],
"x-ms-correlation-request-id": [
- "fb9e5dbe-372d-4a44-bb4b-cd68d86b1a42"
+ "cc04b199-f141-4642-a2c0-29e71d672335"
],
"x-ms-arm-service-request-id": [
- "03d45534-5276-42b9-9b39-8e0d7bce9c49"
+ "731ccd75-160c-4763-a0c0-cf1c76eb9e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50681,16 +32476,16 @@
"11972"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033421Z:fb9e5dbe-372d-4a44-bb4b-cd68d86b1a42"
+ "WESTUS:20200826T121845Z:1904e282-0bb7-402a-94ee-891035acb7e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:34:21 GMT"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Content-Length": [
- "30"
+ "47"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -50699,84 +32494,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"vpnServerConfigurationResourceIds\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/vpnServerConfigurations/ps1604?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuU2VydmVyQ29uZmlndXJhdGlvbnMvcHMxNjA0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "42d03b40-8acb-4e27-afb2-ca5751939c29"
- ],
- "x-ms-correlation-request-id": [
- "55021c9c-daba-4d24-8647-95ba683c90b1"
- ],
- "x-ms-arm-service-request-id": [
- "864e67c9-a9aa-44cb-a081-5107a69178ab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T033431Z:55021c9c-daba-4d24-8647-95ba683c90b1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:34:31 GMT"
- ],
- "Content-Length": [
- "30"
+ "x-ms-client-request-id": [
+ "44bee6e2-3139-47c6-984d-e8d204141163"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Accept-Language": [
+ "en-US"
],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -50786,145 +32523,26 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "b33492df-5d29-4e2a-baf9-8b35b19ac675"
- ],
- "x-ms-correlation-request-id": [
- "0d2d9462-6c86-4752-88fb-9283fc110ad9"
- ],
- "x-ms-arm-service-request-id": [
- "94487fef-a774-4bdc-8434-b9712d2225aa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T033441Z:0d2d9462-6c86-4752-88fb-9283fc110ad9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:34:40 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/67fd39d2-772b-4010-bd3d-1c095780be9f?api-version=2020-06-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "347ce7ec-f0d7-45d6-b529-64d11e358cff"
- ],
- "x-ms-correlation-request-id": [
- "80c07369-9cce-4c60-9c74-3840c97b7537"
- ],
- "x-ms-arm-service-request-id": [
- "953eddac-03c8-4e77-a998-b5061b44ac00"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T033451Z:80c07369-9cce-4c60-9c74-3840c97b7537"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:34:50 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "67fd39d2-772b-4010-bd3d-1c095780be9f"
],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "422b8b81-d36b-4ecc-80a3-f25d4c345cac"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/67fd39d2-772b-4010-bd3d-1c095780be9f?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "2afcd339-ee44-4052-96b7-70db6e999ea5"
+ "fa48a2f3-dc8b-4358-a873-9189bd9532aa"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "e9bae203-6393-44f9-88f6-4ee8794656eb"
+ "db356cd1-b423-4610-bd1c-29ab642ba238"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -50933,106 +32551,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033501Z:2afcd339-ee44-4052-96b7-70db6e999ea5"
+ "WESTUS:20200826T121846Z:fa48a2f3-dc8b-4358-a873-9189bd9532aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:35:01 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 26 Aug 2020 12:18:45 GMT"
],
"Expires": [
"-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "c7fa9ea2-56c1-40af-95d0-977d486c5482"
- ],
- "x-ms-correlation-request-id": [
- "59a8e306-4c5c-43b0-9a10-b3b2df3e07f9"
- ],
- "x-ms-arm-service-request-id": [
- "83688e85-1b3e-4b57-9369-9be3523f9635"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T033511Z:59a8e306-4c5c-43b0-9a10-b3b2df3e07f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:35:11 GMT"
],
"Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/67fd39d2-772b-4010-bd3d-1c095780be9f?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY3ZmQzOWQyLTc3MmItNDAxMC1iZDNkLTFjMDk1NzgwYmU5Zj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51042,17 +32593,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "cadf3a6c-eeaa-42a0-bb6f-8457d22407f8"
+ "6fc1f4a7-32a1-4e7c-a216-21eb0126668d"
],
"x-ms-correlation-request-id": [
- "a102069e-3031-4786-bf94-375eaa718ff4"
+ "4731804c-f403-4029-9e5f-0551db50475e"
],
"x-ms-arm-service-request-id": [
- "6138a4e8-99a6-4fc0-88e0-3fa361da1b42"
+ "489c7e6e-565b-4d47-9163-1275f0ee6e5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51062,19 +32610,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033521Z:a102069e-3031-4786-bf94-375eaa718ff4"
+ "WESTUS:20200826T121856Z:4731804c-f403-4029-9e5f-0551db50475e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:35:21 GMT"
+ "Wed, 26 Aug 2020 12:18:55 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -51083,20 +32631,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/67fd39d2-772b-4010-bd3d-1c095780be9f?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzY3ZmQzOWQyLTc3MmItNDAxMC1iZDNkLTFjMDk1NzgwYmU5Zj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51106,17 +32654,23 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/67fd39d2-772b-4010-bd3d-1c095780be9f?api-version=2020-06-01"
],
"x-ms-request-id": [
- "e65a166f-5b63-45a0-8226-12c0c2383db7"
+ "67fd39d2-772b-4010-bd3d-1c095780be9f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/67fd39d2-772b-4010-bd3d-1c095780be9f?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "4a3b06a6-4aa4-4a01-9405-2dfe17400acb"
+ "fa48a2f3-dc8b-4358-a873-9189bd9532aa"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "ec15401b-df10-4bba-ac22-27a0e767a085"
+ "db356cd1-b423-4610-bd1c-29ab642ba238"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51126,19 +32680,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033532Z:4a3b06a6-4aa4-4a01-9405-2dfe17400acb"
+ "WESTUS:20200826T121856Z:23230e35-494d-40aa-8651-b705e158aad9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:35:31 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 26 Aug 2020 12:18:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -51147,84 +32698,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualHubs/ps4818?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0ODE4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "c1ec49b6-9075-46f4-af03-016ec0b9ea38"
- ],
- "x-ms-correlation-request-id": [
- "ab2b90d3-3757-4885-a0c8-be00bef99021"
- ],
- "x-ms-arm-service-request-id": [
- "498c608d-bd8a-4dab-adbd-170d2af8675e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T033542Z:ab2b90d3-3757-4885-a0c8-be00bef99021"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:35:41 GMT"
- ],
- "Content-Length": [
- "30"
+ "x-ms-client-request-id": [
+ "7f668006-8666-44fe-9e00-d289571d42b6"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Accept-Language": [
+ "en-US"
],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51234,17 +32727,26 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2ee1ef67-473a-4abe-bb1f-5f63238eaa4b"
+ "47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "035bd495-ebe7-42fb-8832-88b8efa675fe"
+ "a9d3f606-2057-4909-bc2a-59b22c11f251"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "87d06e5d-4344-4364-9df8-c0620f5e8ecd"
+ "65f34882-70c8-42a3-8120-0c8a456cd0f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51253,106 +32755,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033552Z:035bd495-ebe7-42fb-8832-88b8efa675fe"
+ "WESTUS:20200826T121857Z:a9d3f606-2057-4909-bc2a-59b22c11f251"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:35:51 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 26 Aug 2020 12:18:57 GMT"
],
"Expires": [
"-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28008.02",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "ed6428e4-0eeb-430f-8c56-fe9c366e46bf"
- ],
- "x-ms-correlation-request-id": [
- "c69a265e-c31b-4f3b-b8ac-18d6c8ada26f"
- ],
- "x-ms-arm-service-request-id": [
- "cd66d828-5263-4d07-9b66-0ff279a5c36a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200531T033602Z:c69a265e-c31b-4f3b-b8ac-18d6c8ada26f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 31 May 2020 03:36:01 GMT"
],
"Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51366,13 +32801,13 @@
"10"
],
"x-ms-request-id": [
- "cde7e302-b23d-4a4a-9f76-4a44aaacec18"
+ "47086a91-2eea-40b8-b5f2-2ece521aadbe"
],
"x-ms-correlation-request-id": [
- "6b9c3c98-dbea-4258-9855-933f464dcefb"
+ "7e295827-9964-4529-89d8-49eb405e1ac5"
],
"x-ms-arm-service-request-id": [
- "d4b9ee45-9a73-4022-bec0-e86a1ff0ffd5"
+ "de7bb63c-9684-4cea-812a-d0bcbdfc1848"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51382,16 +32817,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033612Z:6b9c3c98-dbea-4258-9855-933f464dcefb"
+ "WESTUS:20200826T121907Z:7e295827-9964-4529-89d8-49eb405e1ac5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:36:11 GMT"
+ "Wed, 26 Aug 2020 12:19:07 GMT"
],
"Content-Length": [
"30"
@@ -51407,16 +32842,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51427,16 +32862,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "9a73841a-f1ee-4005-a230-4bda623547ad"
+ "c61dff04-0449-4545-9f09-354785629cf6"
],
"x-ms-correlation-request-id": [
- "aca42091-7be1-451b-9fad-db62c97c018f"
+ "98ff1141-816c-43f7-9082-515c1867cf35"
],
"x-ms-arm-service-request-id": [
- "b2a8f97e-b4ec-4799-86fe-5120b3285b0a"
+ "63336ca6-3d53-4ee5-abe3-1245ea9cf8a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51446,16 +32881,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033622Z:aca42091-7be1-451b-9fad-db62c97c018f"
+ "WESTUS:20200826T121917Z:98ff1141-816c-43f7-9082-515c1867cf35"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:36:21 GMT"
+ "Wed, 26 Aug 2020 12:19:17 GMT"
],
"Content-Length": [
"30"
@@ -51471,16 +32906,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51491,16 +32926,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "0b1056d2-a7a6-4ef0-ba74-f65c6210cdee"
+ "ed2e33fb-2268-4d14-8b73-4c9160b5e859"
],
"x-ms-correlation-request-id": [
- "00da737f-77da-4679-ab8f-f111b37f1d2f"
+ "8c7e0a48-a5fa-433a-b7cd-8a1ac8c37f59"
],
"x-ms-arm-service-request-id": [
- "26df9897-e92c-4bb6-898a-7b7f4f5c9482"
+ "21945e6d-4cbe-4228-a944-53318e0d0d7c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51510,16 +32945,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033632Z:00da737f-77da-4679-ab8f-f111b37f1d2f"
+ "WESTUS:20200826T121937Z:8c7e0a48-a5fa-433a-b7cd-8a1ac8c37f59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:36:31 GMT"
+ "Wed, 26 Aug 2020 12:19:37 GMT"
],
"Content-Length": [
"30"
@@ -51535,16 +32970,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51555,16 +32990,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "4e5bd4a4-af52-4357-8174-558e890ad445"
+ "7e8204b9-3dc8-4700-ad7f-b14925f64455"
],
"x-ms-correlation-request-id": [
- "df253e07-6c76-41cd-9755-461df12becd1"
+ "4411e570-7928-46ae-951f-9efdda71544a"
],
"x-ms-arm-service-request-id": [
- "0de6db9d-3c1d-4b36-ae29-ce6827fdf5d7"
+ "c9facdbd-9186-4772-9b9e-2bbd2720d7a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51574,16 +33009,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033642Z:df253e07-6c76-41cd-9755-461df12becd1"
+ "WESTUS:20200826T121957Z:4411e570-7928-46ae-951f-9efdda71544a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:36:42 GMT"
+ "Wed, 26 Aug 2020 12:19:57 GMT"
],
"Content-Length": [
"30"
@@ -51599,16 +33034,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51619,16 +33054,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "bea8f160-58fa-4e2c-866f-d1f1f063e410"
+ "597a2d4d-7e5d-421a-b57a-b0d90f331560"
],
"x-ms-correlation-request-id": [
- "cb3de0d3-d7da-49da-bdeb-fa323c9928c1"
+ "6433cd47-0d51-4a76-9ed4-242d61d0466e"
],
"x-ms-arm-service-request-id": [
- "23710b13-8798-4b1b-a495-524b4974eb79"
+ "9a86ddf4-da01-4622-83e2-dfd2e991546e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51638,16 +33073,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033652Z:cb3de0d3-d7da-49da-bdeb-fa323c9928c1"
+ "WESTUS:20200826T122037Z:6433cd47-0d51-4a76-9ed4-242d61d0466e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:36:52 GMT"
+ "Wed, 26 Aug 2020 12:20:37 GMT"
],
"Content-Length": [
"30"
@@ -51663,16 +33098,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51683,16 +33118,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "63b40f47-4b9d-482f-b5e3-5c8d98b79801"
+ "de45e073-e585-4a89-a2bc-d9ec7bdb516d"
],
"x-ms-correlation-request-id": [
- "bf020c5a-42ce-4aea-a720-0105fa15194b"
+ "64fc1152-eb35-49fa-8175-4ee5f980d04c"
],
"x-ms-arm-service-request-id": [
- "ca14e3e2-f10a-475d-a7ee-104f8ce2f230"
+ "26ac4686-52c2-43b3-b11b-3ed483d85cb9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51702,16 +33137,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033702Z:bf020c5a-42ce-4aea-a720-0105fa15194b"
+ "WESTUS:20200826T122117Z:64fc1152-eb35-49fa-8175-4ee5f980d04c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:02 GMT"
+ "Wed, 26 Aug 2020 12:21:17 GMT"
],
"Content-Length": [
"30"
@@ -51727,16 +33162,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51747,16 +33182,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "57becec7-992c-4f77-b12b-b3f93518eecf"
+ "7487b8f9-603b-423b-9f81-c2ec3079911c"
],
"x-ms-correlation-request-id": [
- "c0b8327b-10e0-4ffe-8592-d15e03f2957f"
+ "3ab5e618-6c01-42eb-9994-cbccfbca4e31"
],
"x-ms-arm-service-request-id": [
- "ae117442-95d2-4026-81ad-14f64e1374ea"
+ "9f51ad8e-202a-480c-ba5a-fbb9b6d19153"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51766,16 +33201,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033712Z:c0b8327b-10e0-4ffe-8592-d15e03f2957f"
+ "WESTUS:20200826T122258Z:3ab5e618-6c01-42eb-9994-cbccfbca4e31"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:12 GMT"
+ "Wed, 26 Aug 2020 12:22:57 GMT"
],
"Content-Length": [
"30"
@@ -51791,16 +33226,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51811,16 +33246,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "952f405e-c996-414d-bf46-2fec5a14db11"
+ "a0cb8659-0401-4bda-8cfa-fe037e9b2d68"
],
"x-ms-correlation-request-id": [
- "cac0f39e-0435-4870-941e-32abb8b69408"
+ "1d274bd6-f991-451a-a43c-ac9ec73bb9e4"
],
"x-ms-arm-service-request-id": [
- "09cb4737-33fd-44a1-b8b3-fb8868aabcd8"
+ "1b1e8f62-436e-41c0-978d-dbfe3dae4cb3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51830,16 +33265,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033722Z:cac0f39e-0435-4870-941e-32abb8b69408"
+ "WESTUS:20200826T122438Z:1d274bd6-f991-451a-a43c-ac9ec73bb9e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:22 GMT"
+ "Wed, 26 Aug 2020 12:24:38 GMT"
],
"Content-Length": [
"30"
@@ -51855,16 +33290,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51875,13 +33310,13 @@
"no-cache"
],
"x-ms-request-id": [
- "97dabd2a-6133-4e28-a0cc-5cc7f5bc371e"
+ "9d3996f0-65e7-4483-8883-9f2fa66556e4"
],
"x-ms-correlation-request-id": [
- "8826b2b1-26c4-4891-a5ef-1665029a3f84"
+ "1649f13d-c6bf-4615-9040-dcf00b4a5fe8"
],
"x-ms-arm-service-request-id": [
- "569c33c5-ef64-41b1-bc53-c543c598627f"
+ "69cf94c5-086d-46b6-8776-d70647403d69"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51891,16 +33326,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033733Z:8826b2b1-26c4-4891-a5ef-1665029a3f84"
+ "WESTUS:20200826T122618Z:1649f13d-c6bf-4615-9040-dcf00b4a5fe8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:32 GMT"
+ "Wed, 26 Aug 2020 12:26:17 GMT"
],
"Content-Length": [
"29"
@@ -51916,16 +33351,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzQ0N2U0MjdkLTI1YzktNGYwOS1hNDg2LWY0YjgzMTQ1NzdmYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzQ3ZjJiZmM4LTJhMmYtNGMzYS04ZjVkLTljZTNhZTdhYTAyYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -51936,22 +33371,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01"
],
"x-ms-request-id": [
- "447e427d-25c9-4f09-a486-f4b8314577fc"
+ "47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/447e427d-25c9-4f09-a486-f4b8314577fc?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/47f2bfc8-2a2f-4c3a-8f5d-9ce3ae7aa02a?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "75a0372f-3bd8-4359-9234-feee35670738"
+ "a9d3f606-2057-4909-bc2a-59b22c11f251"
],
"Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "3205a5c4-1fd8-4f9f-89e5-daadceff51aa"
+ "65f34882-70c8-42a3-8120-0c8a456cd0f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51961,16 +33396,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033733Z:431b61c8-6569-46ac-91da-4a09fffd2ec5"
+ "WESTUS:20200826T122618Z:7738be39-aae3-45dc-b72d-e28b38becd12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:32 GMT"
+ "Wed, 26 Aug 2020 12:26:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -51983,22 +33418,22 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7860/providers/Microsoft.Network/virtualWans/ps3994?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzOTk0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps1913/providers/Microsoft.Network/virtualWans/ps6953?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMTkxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM2OTUzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16cc83a9-ba6d-4ed4-89cb-2d7e0f5b8b07"
+ "ebd44ea7-b5b4-455b-b7f0-1b524b1ec4cd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -52009,25 +33444,25 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/50a12e28-a10c-4f8a-8672-3166c18d0dc2?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/525cb604-bd1b-42be-9efe-2a2600601058?api-version=2020-06-01"
],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "50a12e28-a10c-4f8a-8672-3166c18d0dc2"
+ "525cb604-bd1b-42be-9efe-2a2600601058"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/50a12e28-a10c-4f8a-8672-3166c18d0dc2?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/525cb604-bd1b-42be-9efe-2a2600601058?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "8798d020-6527-44b4-b2b3-8fdd5e934011"
+ "c74b4c72-1d94-4af4-a70c-78784b4a5265"
],
"Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "c1f5ea30-a4c9-4cae-ac8a-3184911e6309"
+ "630e41aa-1f69-41fb-a66e-8218d1f35a1d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52040,13 +33475,13 @@
"14999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033733Z:8798d020-6527-44b4-b2b3-8fdd5e934011"
+ "WESTUS:20200826T122619Z:c74b4c72-1d94-4af4-a70c-78784b4a5265"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:33 GMT"
+ "Wed, 26 Aug 2020 12:26:18 GMT"
],
"Expires": [
"-1"
@@ -52059,16 +33494,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/50a12e28-a10c-4f8a-8672-3166c18d0dc2?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYTEyZTI4LWExMGMtNGY4YS04NjcyLTMxNjZjMThkMGRjMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/525cb604-bd1b-42be-9efe-2a2600601058?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUyNWNiNjA0LWJkMWItNDJiZS05ZWZlLTJhMjYwMDYwMTA1OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -52079,13 +33514,13 @@
"no-cache"
],
"x-ms-request-id": [
- "3ee52d6b-f817-47c1-b53c-b1d61ace8880"
+ "78385258-4c38-45df-bb17-b55de318fea7"
],
"x-ms-correlation-request-id": [
- "7f03eb4f-f0ba-4701-af5e-710dcd4a75cb"
+ "6bc38bde-f99d-43f1-b77f-2b3c7041456d"
],
"x-ms-arm-service-request-id": [
- "c639f17e-fe3a-4541-a1d0-adde83df4c27"
+ "8b093f6a-8934-4569-bc25-1987fc77b406"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52095,16 +33530,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033743Z:7f03eb4f-f0ba-4701-af5e-710dcd4a75cb"
+ "WESTUS:20200826T122629Z:6bc38bde-f99d-43f1-b77f-2b3c7041456d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:43 GMT"
+ "Wed, 26 Aug 2020 12:26:28 GMT"
],
"Content-Length": [
"29"
@@ -52120,16 +33555,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/50a12e28-a10c-4f8a-8672-3166c18d0dc2?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzUwYTEyZTI4LWExMGMtNGY4YS04NjcyLTMxNjZjMThkMGRjMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/525cb604-bd1b-42be-9efe-2a2600601058?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzUyNWNiNjA0LWJkMWItNDJiZS05ZWZlLTJhMjYwMDYwMTA1OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.0.0"
]
},
"ResponseHeaders": {
@@ -52140,22 +33575,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/50a12e28-a10c-4f8a-8672-3166c18d0dc2?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/525cb604-bd1b-42be-9efe-2a2600601058?api-version=2020-06-01"
],
"x-ms-request-id": [
- "50a12e28-a10c-4f8a-8672-3166c18d0dc2"
+ "525cb604-bd1b-42be-9efe-2a2600601058"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/50a12e28-a10c-4f8a-8672-3166c18d0dc2?api-version=2020-04-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/525cb604-bd1b-42be-9efe-2a2600601058?api-version=2020-06-01"
],
"x-ms-correlation-request-id": [
- "8798d020-6527-44b4-b2b3-8fdd5e934011"
+ "c74b4c72-1d94-4af4-a70c-78784b4a5265"
],
"Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "c1f5ea30-a4c9-4cae-ac8a-3184911e6309"
+ "630e41aa-1f69-41fb-a66e-8218d1f35a1d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52165,16 +33600,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033743Z:5644709c-cff4-4eb0-927f-77cb3cfaf5cb"
+ "WESTUS:20200826T122629Z:82774331-481b-445b-8e38-15b462835143"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:43 GMT"
+ "Wed, 26 Aug 2020 12:26:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -52187,22 +33622,22 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps7860?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNzg2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps1913?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzMTkxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffddc8fe-5a44-4253-bac3-106416f89f65"
+ "eec92547-4b51-486d-be6c-fb5088b8f7c5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52213,7 +33648,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52222,13 +33657,13 @@
"14999"
],
"x-ms-request-id": [
- "8e90341a-108b-416f-80d6-152523ccfb51"
+ "d48740dc-9908-4ece-aae9-bf2a40fcb197"
],
"x-ms-correlation-request-id": [
- "8e90341a-108b-416f-80d6-152523ccfb51"
+ "d48740dc-9908-4ece-aae9-bf2a40fcb197"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033745Z:8e90341a-108b-416f-80d6-152523ccfb51"
+ "WESTUS:20200826T122630Z:d48740dc-9908-4ece-aae9-bf2a40fcb197"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52237,7 +33672,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:37:45 GMT"
+ "Wed, 26 Aug 2020 12:26:29 GMT"
],
"Expires": [
"-1"
@@ -52250,16 +33685,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52270,7 +33705,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52279,13 +33714,13 @@
"11999"
],
"x-ms-request-id": [
- "2f22909b-41ee-4c16-9162-e54f53b12580"
+ "77c513f8-1021-4d58-a81e-2eb3eef8a762"
],
"x-ms-correlation-request-id": [
- "2f22909b-41ee-4c16-9162-e54f53b12580"
+ "77c513f8-1021-4d58-a81e-2eb3eef8a762"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033801Z:2f22909b-41ee-4c16-9162-e54f53b12580"
+ "WESTUS:20200826T122645Z:77c513f8-1021-4d58-a81e-2eb3eef8a762"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52294,7 +33729,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:38:00 GMT"
+ "Wed, 26 Aug 2020 12:26:45 GMT"
],
"Expires": [
"-1"
@@ -52307,16 +33742,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52327,7 +33762,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52336,13 +33771,13 @@
"11998"
],
"x-ms-request-id": [
- "ac18ea58-7174-40b0-914d-2ea601471489"
+ "b2945777-d47a-4535-969d-734cbac6a78a"
],
"x-ms-correlation-request-id": [
- "ac18ea58-7174-40b0-914d-2ea601471489"
+ "b2945777-d47a-4535-969d-734cbac6a78a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033816Z:ac18ea58-7174-40b0-914d-2ea601471489"
+ "WESTUS:20200826T122700Z:b2945777-d47a-4535-969d-734cbac6a78a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52351,7 +33786,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:38:15 GMT"
+ "Wed, 26 Aug 2020 12:27:00 GMT"
],
"Expires": [
"-1"
@@ -52364,16 +33799,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52384,7 +33819,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52393,13 +33828,13 @@
"11997"
],
"x-ms-request-id": [
- "40331b50-5b77-4023-8407-598829c9c0e7"
+ "85ffbd7e-88a5-4b7d-86da-cbdbb4e6a2fc"
],
"x-ms-correlation-request-id": [
- "40331b50-5b77-4023-8407-598829c9c0e7"
+ "85ffbd7e-88a5-4b7d-86da-cbdbb4e6a2fc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033831Z:40331b50-5b77-4023-8407-598829c9c0e7"
+ "WESTUS:20200826T122715Z:85ffbd7e-88a5-4b7d-86da-cbdbb4e6a2fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52408,7 +33843,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:38:30 GMT"
+ "Wed, 26 Aug 2020 12:27:15 GMT"
],
"Expires": [
"-1"
@@ -52421,16 +33856,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52441,7 +33876,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52450,13 +33885,13 @@
"11996"
],
"x-ms-request-id": [
- "341bf3e2-35b0-4eb2-b09a-25f38db5b7d9"
+ "3a25f693-5524-4c33-8a52-4e291eb38238"
],
"x-ms-correlation-request-id": [
- "341bf3e2-35b0-4eb2-b09a-25f38db5b7d9"
+ "3a25f693-5524-4c33-8a52-4e291eb38238"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033846Z:341bf3e2-35b0-4eb2-b09a-25f38db5b7d9"
+ "WESTUS:20200826T122730Z:3a25f693-5524-4c33-8a52-4e291eb38238"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52465,7 +33900,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:38:46 GMT"
+ "Wed, 26 Aug 2020 12:27:30 GMT"
],
"Expires": [
"-1"
@@ -52478,16 +33913,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52498,7 +33933,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52507,13 +33942,13 @@
"11995"
],
"x-ms-request-id": [
- "6f5337b5-7bf1-490b-a0fc-e47bd864d4bc"
+ "d212b6ca-d523-4fbd-a8e1-184f80c7881e"
],
"x-ms-correlation-request-id": [
- "6f5337b5-7bf1-490b-a0fc-e47bd864d4bc"
+ "d212b6ca-d523-4fbd-a8e1-184f80c7881e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033901Z:6f5337b5-7bf1-490b-a0fc-e47bd864d4bc"
+ "WESTUS:20200826T122745Z:d212b6ca-d523-4fbd-a8e1-184f80c7881e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52522,7 +33957,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:39:01 GMT"
+ "Wed, 26 Aug 2020 12:27:45 GMT"
],
"Expires": [
"-1"
@@ -52535,16 +33970,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52555,7 +33990,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -52564,13 +33999,13 @@
"11994"
],
"x-ms-request-id": [
- "c33744c9-e8c2-479b-b13a-6fe569402c1d"
+ "f1a7cd5c-114e-47b3-bba7-9e6b94975dba"
],
"x-ms-correlation-request-id": [
- "c33744c9-e8c2-479b-b13a-6fe569402c1d"
+ "f1a7cd5c-114e-47b3-bba7-9e6b94975dba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033916Z:c33744c9-e8c2-479b-b13a-6fe569402c1d"
+ "WESTUS:20200826T122800Z:f1a7cd5c-114e-47b3-bba7-9e6b94975dba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52579,7 +34014,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:39:16 GMT"
+ "Wed, 26 Aug 2020 12:28:00 GMT"
],
"Expires": [
"-1"
@@ -52592,16 +34027,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52615,13 +34050,13 @@
"11993"
],
"x-ms-request-id": [
- "cdd322e1-4a82-445e-8105-c2e75a489683"
+ "f58f5028-5540-4eb1-b256-3fa22198fd12"
],
"x-ms-correlation-request-id": [
- "cdd322e1-4a82-445e-8105-c2e75a489683"
+ "f58f5028-5540-4eb1-b256-3fa22198fd12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033931Z:cdd322e1-4a82-445e-8105-c2e75a489683"
+ "WESTUS:20200826T122816Z:f58f5028-5540-4eb1-b256-3fa22198fd12"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52630,7 +34065,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:39:31 GMT"
+ "Wed, 26 Aug 2020 12:28:15 GMT"
],
"Expires": [
"-1"
@@ -52643,16 +34078,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28008.02",
+ "FxVersion/4.6.29017.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22"
]
},
"ResponseHeaders": {
@@ -52666,13 +34101,13 @@
"11992"
],
"x-ms-request-id": [
- "7c78a2dc-40bb-4775-a67a-70aa4f4c4c1c"
+ "2f034bed-8660-4369-bf2c-353cef35c0f2"
],
"x-ms-correlation-request-id": [
- "7c78a2dc-40bb-4775-a67a-70aa4f4c4c1c"
+ "2f034bed-8660-4369-bf2c-353cef35c0f2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200531T033931Z:7c78a2dc-40bb-4775-a67a-70aa4f4c4c1c"
+ "WESTUS:20200826T122816Z:2f034bed-8660-4369-bf2c-353cef35c0f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -52681,7 +34116,7 @@
"nosniff"
],
"Date": [
- "Sun, 31 May 2020 03:39:31 GMT"
+ "Wed, 26 Aug 2020 12:28:15 GMT"
],
"Expires": [
"-1"
@@ -52696,12 +34131,12 @@
],
"Names": {
"Test-P2SCortexCRUD": [
- "ps7860",
- "ps3994",
- "ps8877",
- "ps5203",
- "ps97",
- "ps5004"
+ "ps1913",
+ "ps6953",
+ "ps4818",
+ "ps1604",
+ "ps6662",
+ "ps3649"
]
},
"Variables": {
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json
new file mode 100644
index 000000000000..066e12208c07
--- /dev/null
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json
@@ -0,0 +1,9546 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps571?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzNTcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fc0e9bb9-38dc-4e33-8212-0e2979a108ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "6cf86fd2-97cc-41d1-aa37-128902e37b1e"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cf86fd2-97cc-41d1-aa37-128902e37b1e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234839Z:6cf86fd2-97cc-41d1-aa37-128902e37b1e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:39 GMT"
+ ],
+ "Content-Length": [
+ "163"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571\",\r\n \"name\": \"ps571\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97b71e52-85f4-4e03-b04a-aeb397166cca"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "37441cd7-ee88-489e-b307-d3f8056adafa"
+ ],
+ "x-ms-correlation-request-id": [
+ "37441cd7-ee88-489e-b307-d3f8056adafa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234840Z:37441cd7-ee88-489e-b307-d3f8056adafa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "213"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps1450' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\""
+ ],
+ "x-ms-request-id": [
+ "7cac4801-cffd-412f-8cf0-be9f6578971e"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d0bd03a-741e-47cc-b9b1-347a769b3f8c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3d8d6100-af8b-45d3-b8b6-0b3760411654"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234854Z:7d0bd03a-741e-47cc-b9b1-347a769b3f8c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:53 GMT"
+ ],
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ebe7f642-ef82-49a6-8d37-faa8c0aa5de8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\""
+ ],
+ "x-ms-request-id": [
+ "f79aa026-0fd4-4f77-ac20-820d87bf5126"
+ ],
+ "x-ms-correlation-request-id": [
+ "95d6d524-7d0d-4971-8a72-674907315e67"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0d4aadd1-7a2f-4d04-a3cf-6e35425dd6d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234854Z:95d6d524-7d0d-4971-8a72-674907315e67"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:53 GMT"
+ ],
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5a1a80a8-1973-40cc-853b-435b703b38e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\""
+ ],
+ "x-ms-request-id": [
+ "64a137eb-5d09-48c8-ae06-bb20dccd6ed0"
+ ],
+ "x-ms-correlation-request-id": [
+ "f42a47c7-559a-4842-803d-465dc1cea0f2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "11ebc947-2267-46ca-a390-8592f6151478"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234854Z:f42a47c7-559a-4842-803d-465dc1cea0f2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:54 GMT"
+ ],
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31cfa67b-2895-4318-8052-cf1e8d7f39f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\""
+ ],
+ "x-ms-request-id": [
+ "0ac2cfe6-4872-49d0-92dd-0b4b71d13c51"
+ ],
+ "x-ms-correlation-request-id": [
+ "52a7f28f-a49d-48b9-961f-e5113fbb2db2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "be1351f2-cfab-4526-a76d-a8517ea3cf9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234855Z:52a7f28f-a49d-48b9-961f-e5113fbb2db2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:54 GMT"
+ ],
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1e12f09-3745-4ba7-bf6e-dcd1f83986ad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"9a2b86b0-d8c9-4ba9-8a47-6bdfa42c86b1\""
+ ],
+ "x-ms-request-id": [
+ "1dab8803-5ff3-40d7-8f2d-459bb2ce64dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a061a64-aee8-4b8e-936a-503e650a679c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7880253f-db08-4557-94cf-de0d8ed25bc9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235620Z:7a061a64-aee8-4b8e-936a-503e650a679c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:20 GMT"
+ ],
+ "Content-Length": [
+ "679"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"9a2b86b0-d8c9-4ba9-8a47-6bdfa42c86b1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c28180ba-2183-45e0-b8ff-5ec2ae311541"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "156"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ef8024d6-8cd8-4f5b-84ac-ee80be019efb"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/ef8024d6-8cd8-4f5b-84ac-ee80be019efb?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "0be3a7ab-8aef-421a-922f-6052cd5af110"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a8357053-fd6b-416b-ad38-159683daeaac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234843Z:0be3a7ab-8aef-421a-922f-6052cd5af110"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:43 GMT"
+ ],
+ "Content-Length": [
+ "493"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"a6567797-5b2d-41ab-820c-1bd1fbfb3a0d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/ef8024d6-8cd8-4f5b-84ac-ee80be019efb?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWY4MDI0ZDYtOGNkOC00ZjViLTg0YWMtZWU4MGJlMDE5ZWZiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "dd5ed875-623f-4ae8-85f8-50174c9aadd7"
+ ],
+ "x-ms-correlation-request-id": [
+ "1562fc65-4efd-4ca6-9c99-812db5ca99be"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a3a60f3b-da13-459f-867b-3011e8b435c3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234854Z:1562fc65-4efd-4ca6-9c99-812db5ca99be"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:53 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e5baa01-2510-4495-81c7-4880bbafbf62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "6950e672-ad17-47bf-b510-4b6172595293"
+ ],
+ "x-ms-correlation-request-id": [
+ "6950e672-ad17-47bf-b510-4b6172595293"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234855Z:6950e672-ad17-47bf-b510-4b6172595293"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "213"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps8475' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ca7cd896-f842-405d-abba-7898ecf916a2"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7b46bd0-793b-44bd-a141-197aedd3230b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e62c50a1-7e7f-4307-95e0-02eeaf481c50"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235620Z:b7b46bd0-793b-44bd-a141-197aedd3230b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:19 GMT"
+ ],
+ "Content-Length": [
+ "752"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"f36c5273-2972-4a07-a560-b87d75afed53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03656db7-9ec6-4f56-9ea6-da138daad699"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3cafbe58-2280-484d-bfd4-05b84b8a5d73"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fd8361d-e76f-4400-8b76-2c0215f7a34b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cade8d74-1e42-4c3a-a6e4-24c5aa118f3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235620Z:8fd8361d-e76f-4400-8b76-2c0215f7a34b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:20 GMT"
+ ],
+ "Content-Length": [
+ "752"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"f36c5273-2972-4a07-a560-b87d75afed53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d775f061-cdb9-4b9b-837f-2b0526f40b5f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4abc64b1-0250-46c5-abd2-46be4702d75c"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9acb1f7-5d77-4c63-a282-ff0c45690426"
+ ],
+ "x-ms-arm-service-request-id": [
+ "50f646ee-58a8-4d88-a713-09306fe08629"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235634Z:e9acb1f7-5d77-4c63-a282-ff0c45690426"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:33 GMT"
+ ],
+ "Content-Length": [
+ "752"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"f36c5273-2972-4a07-a560-b87d75afed53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7583afeb-06d8-494e-98b6-7eed6b4670e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "346"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a0a5c665-a63a-41bb-bd25-3f80c5174954"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "57852963-2884-4764-b7a9-1d3e9140b2fb"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "70a95a79-2743-409b-a0c5-64014165fa43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234858Z:57852963-2884-4764-b7a9-1d3e9140b2fb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:48:57 GMT"
+ ],
+ "Content-Length": [
+ "743"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"08494b16-15ff-43c5-a7c6-e82b812bd373\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "39db6709-4467-4f51-8af2-52f4181fda5c"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5876875-266a-42bf-978a-f11b9198e75c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fd3fcd94-442f-4a25-8f65-f45008af5412"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234908Z:a5876875-266a-42bf-978a-f11b9198e75c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:49:08 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "77bda342-1557-427f-bcd4-4ad12157a7b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "57a6cfeb-887a-4500-bd23-bdbfacae2305"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2b6a556b-1bbe-42b1-a0a7-bb88d462bfc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234918Z:57a6cfeb-887a-4500-bd23-bdbfacae2305"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:49:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "edd60aa3-ee5a-4b91-ab84-ddbc4cf527f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "a33edb76-d124-4318-8b59-221afaeecb64"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f229c30d-8f7b-411b-b42e-8626e665580b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234938Z:a33edb76-d124-4318-8b59-221afaeecb64"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:49:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "3351b74d-77b8-4dfa-b87b-582967d1b8d9"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8361cc3-3abf-4f31-887d-27a8900e9737"
+ ],
+ "x-ms-arm-service-request-id": [
+ "59fa1827-90b3-4def-b6ed-28c878a9eb7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T234958Z:a8361cc3-3abf-4f31-887d-27a8900e9737"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:49:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "8a43e401-7661-4786-b54d-f54cd863a98d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2c0e322-5ba4-427c-8e6b-78eac151db28"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3e5b8190-4854-4dbe-bed9-6ea1902154d2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235038Z:b2c0e322-5ba4-427c-8e6b-78eac151db28"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:50:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "75179373-20a2-4729-b07a-fceb8999a312"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0cfb3d9-719e-48b3-8f64-2a59d8206b06"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7dd0df1f-02be-40ab-9ae1-68d14a8ebfe9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235118Z:a0cfb3d9-719e-48b3-8f64-2a59d8206b06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:51:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "8de14135-2089-4833-a2b5-4dff38b5a1c4"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3ca087b-cefd-40a9-9d17-2cba09763e76"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fb1bf700-f689-448b-bef1-6e557e7f9b2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235259Z:b3ca087b-cefd-40a9-9d17-2cba09763e76"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:52:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "f7dd9000-9c51-4b32-b490-d262cb489491"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a99ca50-cd78-44de-919c-731218783d39"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f18e6c32-f461-4aac-a955-7652ed44abd0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235439Z:0a99ca50-cd78-44de-919c-731218783d39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:54:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2b2a2e6e-effb-4731-a972-685325ef6acb"
+ ],
+ "x-ms-correlation-request-id": [
+ "6191f549-20a3-4873-b478-c8affd0b115b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "794c1836-4e5a-4893-940b-68065bf144fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235619Z:6191f549-20a3-4873-b478-c8affd0b115b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:19 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubVirtualNetworkConnections?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzUvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3be2502d-93ac-4ecb-9280-58fd84a8117f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "71389760-4a1c-4a23-b77a-684ca31c8572"
+ ],
+ "x-ms-correlation-request-id": [
+ "92ad74d5-e805-4fc6-ae1f-b0167bead8bc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b41a7cca-3c42-44d6-b5d7-694338d844e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235620Z:92ad74d5-e805-4fc6-ae1f-b0167bead8bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:19 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubVirtualNetworkConnections?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzUvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "edd7f11e-a3d3-41ae-8863-418cfa36c62a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3728ffcf-edd1-4c30-9c7b-f0a036e968e5"
+ ],
+ "x-ms-correlation-request-id": [
+ "04e94e6a-64a7-46da-b5cc-bdfdf444ddd4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4ff7692e-7996-4bf3-930e-7819e03462b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235634Z:04e94e6a-64a7-46da-b5cc-bdfdf444ddd4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:34 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e5c7f76-8a9a-497c-b103-15d583686f74"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "be8c71aa-3581-4d32-ba30-f23bc1af3d5c"
+ ],
+ "x-ms-correlation-request-id": [
+ "be8c71aa-3581-4d32-ba30-f23bc1af3d5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235620Z:be8c71aa-3581-4d32-ba30-f23bc1af3d5c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "210"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnSites/ps1520' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\""
+ ],
+ "x-ms-request-id": [
+ "15fcbaf8-5e1a-4123-b3b0-7c99d738e487"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae107758-b478-4d0f-aed5-27a1e94e8e19"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c50fc8a5-17bf-47c3-a962-ec7fcffee77a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235633Z:ae107758-b478-4d0f-aed5-27a1e94e8e19"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:33 GMT"
+ ],
+ "Content-Length": [
+ "2020"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1520\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\",\r\n \"etag\": \"W/\\\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.169.2.0/24\",\r\n \"192.169.3.0/24\"\r\n ]\r\n },\r\n \"deviceProperties\": {\r\n \"deviceModel\": \"SomeDevice\",\r\n \"deviceVendor\": \"SomeDeviceVendor\",\r\n \"linkSpeedInMbps\": 0\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"isSecuritySite\": false,\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"ps1039\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\",\r\n \"etag\": \"W/\\\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipAddress\": \"5.5.5.5\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider1\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"ps35\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\",\r\n \"etag\": \"W/\\\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipAddress\": \"5.5.5.6\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider2\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"deviceProperties\": {\r\n \"deviceVendor\": \"SomeDeviceVendor\",\r\n \"deviceModel\": \"SomeDevice\",\r\n \"linkSpeedInMbps\": 0\r\n },\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.169.2.0/24\",\r\n \"192.169.3.0/24\"\r\n ]\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"properties\": {\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider1\",\r\n \"linkSpeedInMbps\": 10\r\n },\r\n \"ipAddress\": \"5.5.5.5\",\r\n \"fqdn\": \"\"\r\n },\r\n \"name\": \"ps1039\"\r\n },\r\n {\r\n \"properties\": {\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider2\",\r\n \"linkSpeedInMbps\": 10\r\n },\r\n \"ipAddress\": \"5.5.5.6\",\r\n \"fqdn\": \"\"\r\n },\r\n \"name\": \"ps35\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "588571e9-0d66-43c5-a889-85906dfba9b5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1060"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8ecab6e0-5ad8-4133-afd9-3e9b9e92a728"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/8ecab6e0-5ad8-4133-afd9-3e9b9e92a728?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfd2b385-0952-4e12-b584-6e805509ff2b"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0e4b5300-1336-4731-bbd7-25a355702552"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235623Z:dfd2b385-0952-4e12-b584-6e805509ff2b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:22 GMT"
+ ],
+ "Content-Length": [
+ "2017"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1520\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\",\r\n \"etag\": \"W/\\\"1f59df95-9fa2-4659-9e62-9c92a1607c2e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.169.2.0/24\",\r\n \"192.169.3.0/24\"\r\n ]\r\n },\r\n \"deviceProperties\": {\r\n \"deviceModel\": \"SomeDevice\",\r\n \"deviceVendor\": \"SomeDeviceVendor\",\r\n \"linkSpeedInMbps\": 0\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"isSecuritySite\": false,\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"ps1039\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\",\r\n \"etag\": \"W/\\\"1f59df95-9fa2-4659-9e62-9c92a1607c2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipAddress\": \"5.5.5.5\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider1\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"ps35\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\",\r\n \"etag\": \"W/\\\"1f59df95-9fa2-4659-9e62-9c92a1607c2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipAddress\": \"5.5.5.6\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider2\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/8ecab6e0-5ad8-4133-afd9-3e9b9e92a728?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGVjYWI2ZTAtNWFkOC00MTMzLWFmZDktM2U5YjllOTJhNzI4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ebe0a0ab-1a27-450f-bf61-100c3b31414e"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cda2ca7-cbec-4c5d-9b7c-ed06a85f496b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "016231eb-9024-4406-926d-693bfb16a29e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235633Z:1cda2ca7-cbec-4c5d-9b7c-ed06a85f496b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:33 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "419e3907-9f3d-447d-897e-652d128cc414"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "4178505c-7851-44be-97f5-a7c11fd75b1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "4178505c-7851-44be-97f5-a7c11fd75b1f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235634Z:4178505c-7851-44be-97f5-a7c11fd75b1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "213"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnGateways/ps5630' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d505291c-1da4-441c-89be-4a7223150b62"
+ ],
+ "x-ms-correlation-request-id": [
+ "08225c65-88ad-4fcc-bb04-aebec5d6b5bc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bef1f039-f62f-4220-a03a-01d0ee24f1ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002222Z:08225c65-88ad-4fcc-bb04-aebec5d6b5bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:22 GMT"
+ ],
+ "Content-Length": [
+ "1612"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"bca701d6-3806-44d3-b891-f26f84c97bfd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fcdad544-b715-4836-901a-b39852bb84a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "330f8b7d-39df-436f-a527-c1b2d82bcb12"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a5c7f31-205c-4db0-80cb-d0272d289171"
+ ],
+ "x-ms-arm-service-request-id": [
+ "211b26e7-5c41-474e-b24d-890d0b9a00ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002222Z:7a5c7f31-205c-4db0-80cb-d0272d289171"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:22 GMT"
+ ],
+ "Content-Length": [
+ "1612"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"bca701d6-3806-44d3-b891-f26f84c97bfd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "696a9710-95ac-468c-9252-669e06a38f98"
+ ],
+ "x-ms-correlation-request-id": [
+ "79e4b92f-596b-48e8-9a27-1c20654e4376"
+ ],
+ "x-ms-arm-service-request-id": [
+ "857222b0-46d3-4231-813e-a287bacbe25e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003025Z:79e4b92f-596b-48e8-9a27-1c20654e4376"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:24 GMT"
+ ],
+ "Content-Length": [
+ "5706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f989b622-b6ab-49a9-abee-d29ad9b0b86d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ff39d1aa-c742-411a-ab4a-1c346c34d0fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ea78d2a-c326-462a-a2fa-2a9eca021e39"
+ ],
+ "x-ms-arm-service-request-id": [
+ "286ae7f4-52ba-4989-904f-e492c94a95bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003025Z:2ea78d2a-c326-462a-a2fa-2a9eca021e39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:24 GMT"
+ ],
+ "Content-Length": [
+ "5706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02eb7ffe-f8c3-4619-b167-2f5b2b28f4ab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "66f6db33-0ec9-47da-8f72-50d9adea6e8b"
+ ],
+ "x-ms-correlation-request-id": [
+ "26cba492-6246-4652-a4a8-0e000d718d6f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "62981e63-41cc-4300-a804-323993a6b48b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003047Z:26cba492-6246-4652-a4a8-0e000d718d6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:47 GMT"
+ ],
+ "Content-Length": [
+ "5706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5afe9712-f55a-44fb-8355-aa92e42a59fd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fb1bcb84-77ea-4336-a383-fe2fc7064559"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e024da9-5876-4afe-99c4-603575c121ed"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7d49ec95-00f8-4d61-ba29-b1c94c6d39ae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003108Z:3e024da9-5876-4afe-99c4-603575c121ed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:08 GMT"
+ ],
+ "Content-Length": [
+ "5712"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e0bd94bb-d26b-48d2-968a-5a172766b35c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cd31e5d9-7b25-44a6-b335-72138d825501"
+ ],
+ "x-ms-correlation-request-id": [
+ "8034c57f-887b-4f2f-adf8-0e8e20d7ed27"
+ ],
+ "x-ms-arm-service-request-id": [
+ "43aa2e52-d06d-4cdf-aad6-833a4938ba47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003410Z:8034c57f-887b-4f2f-adf8-0e8e20d7ed27"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:09 GMT"
+ ],
+ "Content-Length": [
+ "5706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "061e0668-573d-45cd-aa6b-beb922e2e2c1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8e8f5ea5-4189-4c41-ba66-12be64aa2dcc"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa3c688b-d989-414c-b203-bdc6ee081e78"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5bd4ad63-376c-44ba-aecd-53701c9a6f9b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003431Z:fa3c688b-d989-414c-b203-bdc6ee081e78"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:31 GMT"
+ ],
+ "Content-Length": [
+ "5712"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fcbc1764-ddaa-4d3f-9782-9e7fc4b31a18"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5c3f4488-9eb2-47ad-95ba-76e7ee0cedfc"
+ ],
+ "x-ms-correlation-request-id": [
+ "04af8ca4-85fa-4bbb-a00c-b6d0045b73e3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4b2ee9b7-ccb6-4d93-898c-4b4cb37c2e14"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003732Z:04af8ca4-85fa-4bbb-a00c-b6d0045b73e3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:37:31 GMT"
+ ],
+ "Content-Length": [
+ "5706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bd0a6efd-08ca-4521-b263-133301542e18"
+ ],
+ "x-ms-correlation-request-id": [
+ "2bfae00a-f50b-455a-be71-1a70ed190fba"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b5873dcc-760a-4eda-a38d-2cba2e982a4e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004034Z:2bfae00a-f50b-455a-be71-1a70ed190fba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:40:33 GMT"
+ ],
+ "Content-Length": [
+ "1612"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"03ce0408-9c11-40f6-a757-4894aaa498e4\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"connections\": [],\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "59a380b3-7a67-491d-a3b3-ff1d2343b474"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "271"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "87e9a76b-d85a-4507-aa5c-53ab69e99a91"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9101197-59de-43aa-a99a-eacd36ea361b"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b772c88c-35ec-4e2b-9491-0b6e4f265491"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235637Z:a9101197-59de-43aa-a99a-eacd36ea361b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:37 GMT"
+ ],
+ "Content-Length": [
+ "711"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"627aa5e2-5d2a-48ba-879c-cc54c5164a6b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": []\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"connections\": [\r\n {\r\n \"properties\": {\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"connectionBandwidth\": 0,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"enableInternetSecurity\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"vpnLinkConnections\": [\r\n {\r\n \"properties\": {\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"routingWeight\": 0,\r\n \"connectionBandwidth\": 100,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"useLocalAzureIpAddress\": false\r\n },\r\n \"name\": \"ps5584\"\r\n },\r\n {\r\n \"properties\": {\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"routingWeight\": 0,\r\n \"connectionBandwidth\": 10,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"useLocalAzureIpAddress\": false\r\n },\r\n \"name\": \"ps1645\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8868\"\r\n }\r\n ],\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"customBgpIpAddresses\": []\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"customBgpIpAddresses\": []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3f443d8-f8dd-45b1-8476-6616501c76de"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2471"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a85604a9-a785-4e28-8b79-2e031596a38c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "11648888-2fd2-4659-a554-6fded20c0ade"
+ ],
+ "x-ms-arm-service-request-id": [
+ "13b9a64a-7197-42b8-a373-fdec5ddc31c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002223Z:11648888-2fd2-4659-a554-6fded20c0ade"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:23 GMT"
+ ],
+ "Content-Length": [
+ "5702"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"connections\": [],\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"customBgpIpAddresses\": []\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"customBgpIpAddresses\": []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"location\": \"eastus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f35900d0-7830-4ec4-af9a-80fcfa9eccfa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "730"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "92b2b88a-e699-44f3-b58d-75a4c4598de1"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "346be396-e804-4b59-ac46-0392515d30ee"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fafa284a-a372-42ee-bd39-193df601ec7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003733Z:346be396-e804-4b59-ac46-0392515d30ee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:37:33 GMT"
+ ],
+ "Content-Length": [
+ "1611"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"637d43ca-94ec-4036-9b44-b0da6cbb24d2\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "263289ee-a14b-4152-b391-f26d5de307d8"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9056d29-bc5e-46c8-b773-505e3ef3e254"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2a0f98c1-f715-4683-9993-61508b30dc0d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235648Z:d9056d29-bc5e-46c8-b773-505e3ef3e254"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:47 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "8224153b-2bdd-4aed-b6c4-9fb516d2c470"
+ ],
+ "x-ms-correlation-request-id": [
+ "caa9ea0e-b256-456e-bfa4-d4efaab68642"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6477993d-c5aa-4e49-8758-fae7004fdacf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235658Z:caa9ea0e-b256-456e-bfa4-d4efaab68642"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:56:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "9d490b2c-6388-412b-b913-506baeca7568"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fde4c39-6ca9-42b3-99c0-2782908a334e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5849ae4c-de20-4fbd-9715-21dabcd1139a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235718Z:0fde4c39-6ca9-42b3-99c0-2782908a334e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:57:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "0c807264-4bdb-4eaa-b72c-1612aedb8e53"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3e32172-246b-4993-9e5e-c9abbc659e6f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8d2cdf4f-6456-4034-be97-b0808ed965ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235738Z:f3e32172-246b-4993-9e5e-c9abbc659e6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:57:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "1fed2344-f2d3-4024-95fe-63ad40da0438"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac61dcbc-5e95-4c0b-b7a9-b7878468e3c6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "733aa2cc-e7d5-47c1-afa9-524883b7af75"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235818Z:ac61dcbc-5e95-4c0b-b7a9-b7878468e3c6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:58:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "3f25717f-cbec-4634-9230-310d4d8d678c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c5d26d0-164d-4250-809d-9f6309ca3547"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fdc3b5a8-e06c-4709-b09b-93496084ed74"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T235858Z:2c5d26d0-164d-4250-809d-9f6309ca3547"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 23:58:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "ca06582c-9931-409d-b09b-c48d7f6c8eb1"
+ ],
+ "x-ms-correlation-request-id": [
+ "63e0f9a2-ef70-458a-a1ff-9f3119f582e3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a0445b5e-177d-4797-9e43-7078abac3ea6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T000038Z:63e0f9a2-ef70-458a-a1ff-9f3119f582e3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:00:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "33fbd598-40f8-4623-ae73-7d11c6505b57"
+ ],
+ "x-ms-correlation-request-id": [
+ "22fe6e91-b77f-433f-b8de-87f648834bf3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "707d3e14-1911-4fcf-b89d-6b492a0ba914"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T000219Z:22fe6e91-b77f-433f-b8de-87f648834bf3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:02:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "d9f8706d-f740-4ed5-a912-bde8d20db31d"
+ ],
+ "x-ms-correlation-request-id": [
+ "9403e306-5c1c-4765-a911-b759e25e04bb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "12f3a0d2-dd9a-4718-b2c6-cf5d0528b9a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T000359Z:9403e306-5c1c-4765-a911-b759e25e04bb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:03:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "9cd6c753-0f5e-4f2c-970e-449915d6263a"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab01f01f-0a67-45aa-b857-4cd2d3f084db"
+ ],
+ "x-ms-arm-service-request-id": [
+ "16f09d13-ebb0-40f1-810b-e660b8f9a9ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T000539Z:ab01f01f-0a67-45aa-b857-4cd2d3f084db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:05:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "84c1034f-55ed-4340-b9c3-7a565930bbce"
+ ],
+ "x-ms-correlation-request-id": [
+ "d352089d-e366-4b27-be6c-b1d5ec8a0a84"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a32d9bc7-2de2-4c27-9606-656e0b7b4267"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T000719Z:d352089d-e366-4b27-be6c-b1d5ec8a0a84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:07:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "c7857f25-0947-4913-8d34-dbac0f749ed4"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb95de12-5c1b-4c3e-95ab-f0391caef562"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cb1b3468-ee10-46f1-9cbb-61db0a03c1bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T000859Z:eb95de12-5c1b-4c3e-95ab-f0391caef562"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:08:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "eaf9194f-6f02-440f-98c4-83d3be4607fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "40e75c87-2e8a-467b-ac2a-abab729c68a6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ad03b647-b9fa-42d5-948f-a5af20b1bc03"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T001040Z:40e75c87-2e8a-467b-ac2a-abab729c68a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:10:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "85cd1381-ba4d-42c6-94ef-e8bc55870ea9"
+ ],
+ "x-ms-correlation-request-id": [
+ "97846369-f6cf-443e-b30c-058954e5c624"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a5fc5e26-9b29-4d66-aae9-5b9119787344"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T001220Z:97846369-f6cf-443e-b30c-058954e5c624"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:12:20 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "55888af8-d9f2-487b-b5ad-7410b47f4571"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fc662b2-38e0-4142-a3fb-aebf8ede00b0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bd9f1df7-1a4d-4214-b6aa-4f0d88d7bbf2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T001400Z:3fc662b2-38e0-4142-a3fb-aebf8ede00b0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:13:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "da01d9ca-fdcd-460e-99c0-8544a3e71bd0"
+ ],
+ "x-ms-correlation-request-id": [
+ "e12d1628-afd5-4327-ad8b-19492d90366e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "389a2199-de24-4991-89f0-5e05ebc4369b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T001540Z:e12d1628-afd5-4327-ad8b-19492d90366e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:15:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "f74b8dcb-8b0d-44c8-8b2a-1d7543c939ca"
+ ],
+ "x-ms-correlation-request-id": [
+ "04875aad-90a3-4844-8c49-3d1583645afb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bbda4e41-e2a9-45ae-9cc0-f64860143362"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T001721Z:04875aad-90a3-4844-8c49-3d1583645afb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:17:21 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "5543960e-fba0-4d0b-bc2f-ea969a428cb9"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ed976f9-add4-4a43-880f-decd72d625cc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "99b11890-efdd-458d-b210-aeb5376dbcc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T001901Z:1ed976f9-add4-4a43-880f-decd72d625cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:19:01 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "0e637bfa-d5fd-4fea-bed3-14d2d1800b12"
+ ],
+ "x-ms-correlation-request-id": [
+ "930630e9-01c6-4b2d-adb8-50ad18562806"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0d56f68b-201f-485f-b46b-f82a1d740f84"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002041Z:930630e9-01c6-4b2d-adb8-50ad18562806"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:20:41 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "52c692cb-11e1-498d-ae25-9dff03f49827"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3f12980-45f5-4007-9a81-0dd909ba861a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "319ae01a-958c-4911-a0b9-1cd740ab82b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002222Z:f3f12980-45f5-4007-9a81-0dd909ba861a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:22 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf4f5141-edbe-43f0-9048-43ced680f47d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f3172feb-2807-4d5d-89c9-d6096572b180"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a922a28-eeef-4ca8-83db-3d0cf711f47a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f81284c8-3bc9-4f6b-8988-1c620f43ff01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002222Z:4a922a28-eeef-4ca8-83db-3d0cf711f47a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:22 GMT"
+ ],
+ "Content-Length": [
+ "248"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868 not found.\",\r\n \"details\": []\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "69256b2f-e93b-4eb3-8674-d407fefa0d8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ffd0078-f0a4-4333-933f-6bd93c40186b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e6348a35-68be-44b6-9544-19f20f247bb5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002233Z:7ffd0078-f0a4-4333-933f-6bd93c40186b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:33 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "8250fe75-bc9f-43c6-8123-27363b458ca4"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e64bc0b-bb2f-43cd-b048-bb09ccf4510d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "225dcfdd-6553-41d3-a3be-7dbcf536ed99"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002243Z:5e64bc0b-bb2f-43cd-b048-bb09ccf4510d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:22:43 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "69f64175-7eee-4800-a5d0-777c6b89aef8"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7d205e3-0f66-45a1-aedb-3bca62c479c8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2c1255d8-0b3f-476f-b454-7fcb31c9f6ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002304Z:a7d205e3-0f66-45a1-aedb-3bca62c479c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:23:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "99698d79-b637-4ff8-9948-f3498e70a1ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "eeafbfd8-daec-4f44-9a4c-4114e628a99e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6441b7f8-26e0-4ff4-9443-017846f28b91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002344Z:eeafbfd8-daec-4f44-9a4c-4114e628a99e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:23:43 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "beb14f86-6a27-4d71-9589-dfa676fc36fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "fda4e830-b3fe-4f67-8647-35f182878f87"
+ ],
+ "x-ms-arm-service-request-id": [
+ "61ff7dec-1019-41c2-87b7-013f7d16325c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002524Z:fda4e830-b3fe-4f67-8647-35f182878f87"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:25:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "f2cc61a2-6842-4ffa-b92a-e5b469fae107"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b2d1eda-d165-4594-8615-46ce11318117"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d8f3211d-4857-454a-8700-ff27a9758c0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002704Z:4b2d1eda-d165-4594-8615-46ce11318117"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:27:04 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "9f5c14fa-e358-4d3f-96fd-5338fd8aa340"
+ ],
+ "x-ms-correlation-request-id": [
+ "a861ddd9-90c3-4001-bf35-be7aa2d42299"
+ ],
+ "x-ms-arm-service-request-id": [
+ "800a0eaa-8355-4568-98ae-b5f4d709ec2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T002844Z:a861ddd9-90c3-4001-bf35-be7aa2d42299"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:28:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5087acd7-90db-4d32-b747-e8bdd982dd9b"
+ ],
+ "x-ms-correlation-request-id": [
+ "90c46533-e9ce-4944-9675-67e13a87a056"
+ ],
+ "x-ms-arm-service-request-id": [
+ "00471041-d41a-41da-bf6d-e4950d2c51e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003025Z:90c46533-e9ce-4944-9675-67e13a87a056"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:24 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"sto2ps571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4acb7c8-577d-40ee-911e-656551a421b5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "75"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d8dc2a12-bac7-4627-8a1f-3d8026e6207b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ece756e-f837-400b-9855-d0349c7f8748"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003025Z:6ece756e-f837-400b-9855-d0349c7f8748"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:25 GMT"
+ ],
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvMnBzNTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2641001f-fedc-49a2-8a33-4cc9a55d948c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "99"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/eastus/asyncoperations/f70ac371-74f4-42da-9eba-61da3503ebee?monitor=true&api-version=2019-06-01"
+ ],
+ "Retry-After": [
+ "17"
+ ],
+ "x-ms-request-id": [
+ "f70ac371-74f4-42da-9eba-61da3503ebee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "9576a6a0-d3dc-4775-a77e-012541b6d08b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003029Z:9576a6a0-d3dc-4775-a77e-012541b6d08b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:29 GMT"
+ ],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/eastus/asyncoperations/f70ac371-74f4-42da-9eba-61da3503ebee?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9mNzBhYzM3MS03NGY0LTQyZGEtOWViYS02MWRhMzUwM2ViZWU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7515915d-2c8f-4e1c-8081-20fe4182d354"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "0705c5f4-481b-494d-88b9-3069f44d03c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003046Z:0705c5f4-481b-494d-88b9-3069f44d03c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:46 GMT"
+ ],
+ "Content-Length": [
+ "1262"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571\",\r\n \"name\": \"sto2ps571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-20T00:30:28.6861929Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sto2ps571.dfs.core.windows.net/\",\r\n \"web\": \"https://sto2ps571.z13.web.core.windows.net/\",\r\n \"blob\": \"https://sto2ps571.blob.core.windows.net/\",\r\n \"queue\": \"https://sto2ps571.queue.core.windows.net/\",\r\n \"table\": \"https://sto2ps571.table.core.windows.net/\",\r\n \"file\": \"https://sto2ps571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvMnBzNTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b413946-9e66-4b32-8d06-bfdaace93874"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "42182b62-537f-4bc2-8ce5-bc4e5148ecef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cb6821b-a364-4e9c-9f51-0cd8d39758c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003046Z:0cb6821b-a364-4e9c-9f51-0cd8d39758c1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:46 GMT"
+ ],
+ "Content-Length": [
+ "1262"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571\",\r\n \"name\": \"sto2ps571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-20T00:30:28.6861929Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sto2ps571.dfs.core.windows.net/\",\r\n \"web\": \"https://sto2ps571.z13.web.core.windows.net/\",\r\n \"blob\": \"https://sto2ps571.blob.core.windows.net/\",\r\n \"queue\": \"https://sto2ps571.queue.core.windows.net/\",\r\n \"table\": \"https://sto2ps571.table.core.windows.net/\",\r\n \"file\": \"https://sto2ps571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571/listKeys?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvMnBzNTcxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0691dc4-e236-4115-9bd3-f4b1be84c944"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4e192d4b-6b3d-4288-aaf7-1589525aa2c5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a54f81e-b987-4899-a9d5-930735396b72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003046Z:0a54f81e-b987-4899-a9d5-930735396b72"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:46 GMT"
+ ],
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"btU5iTqNjO3PYBklkKjbelYQb/Waz/HhAWzWsLJsekAidTmJFKofOBnANODBPh3BQOQ7JXt3mmFigyUpP7XihA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"HG7AkLiYzVNrJyO5FtZSklsAw/UQNnbgYZsihi6pHp8eZS7z92HJPcgDYvrcqfcIdOF2cPKxUwLCbR0Dm5rP6A==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/startpacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e9d19f58-ba27-4830-b8d1-1cfdffc252a5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "66"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "12d34d03-d28b-4280-95e2-6f9cbc827c1f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc5aae70-8ea9-4c89-966a-5fbfd7ecc062"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0073204a-c258-4291-bcd8-20f36f6f6a0a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003048Z:fc5aae70-8ea9-4c89-966a-5fbfd7ecc062"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:47 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/startpacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"filterData\": \"{\\\"TracingFlags\\\":11,\\\"MaxPacketBufferSize\\\":120,\\\"MaxFileSize\\\":500,\\\"Filters\\\":[{\\\"SourceSubnets\\\":[\\\"10.19.0.4/32\\\",\\\"10.20.0.4/32\\\"],\\\"DestinationSubnets\\\":[\\\"10.20.0.4/32\\\",\\\"10.19.0.4/32\\\"],\\\"IpSubnetValueAsAny\\\":true,\\\"TcpFlags\\\":-1,\\\"PortValueAsAny\\\":true,\\\"CaptureSingleDirectionTrafficOnly\\\":true}]}\",\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb65a733-39b7-46a0-b9c5-9c5d324e7352"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "396"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0ee6080f-b4b3-4763-93cc-d752efe25c45"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "29fe05d2-7090-4d2f-8198-82e6984b2760"
+ ],
+ "x-ms-arm-service-request-id": [
+ "20f12159-d7e3-4b75-804d-4958d20d9044"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003410Z:29fe05d2-7090-4d2f-8198-82e6984b2760"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:09 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTJkMzRkMDMtZDI4Yi00MjgwLTk1ZTItNmY5Y2JjODI3YzFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "23de5e5b-b297-4027-94bb-ca81d1cbfecd"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cc1b700-2412-430c-8386-5811aa2a15e7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "dc2daee5-8304-43fe-8d51-7746c06dbe15"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003058Z:6cc1b700-2412-430c-8386-5811aa2a15e7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:30:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTJkMzRkMDMtZDI4Yi00MjgwLTk1ZTItNmY5Y2JjODI3YzFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3e8bc0f6-1359-4e7b-ab6c-d89936ad2374"
+ ],
+ "x-ms-correlation-request-id": [
+ "c39ab30d-1429-43f3-9c3b-81e9fc04ac25"
+ ],
+ "x-ms-arm-service-request-id": [
+ "02ffdbac-44bf-455e-b46b-d400b0957130"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003108Z:c39ab30d-1429-43f3-9c3b-81e9fc04ac25"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:07 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMTJkMzRkMDMtZDI4Yi00MjgwLTk1ZTItNmY5Y2JjODI3YzFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "12d34d03-d28b-4280-95e2-6f9cbc827c1f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc5aae70-8ea9-4c89-966a-5fbfd7ecc062"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0073204a-c258-4291-bcd8-20f36f6f6a0a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003108Z:d87e5be7-6756-48d9-9b4c-3eea48c7c96f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:07 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/stoppacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "POST",
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ "RequestBody": "{\r\n \"sasUrl\": \"https://sto2ps571.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=HgRFkJ%2F2pt33KafhzZHy59fuPdTzSo3QJdoRJccd%2BNQ%3D&st=2020-08-19T23%3A30%3A50Z&se=2020-08-21T00%3A30%3A50Z&sp=rwd\",\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17d1f4b5-8dc2-430b-8855-cb0a9ab770b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "273"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dc793075-f5db-4d90-8250-a7a95a78c931"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6d617d3-18e7-49aa-b844-1f357a84ac2b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1c80439f-68f8-49d0-8a0a-b6f5f689f742"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003109Z:d6d617d3-18e7-49aa-b844-1f357a84ac2b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:09 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/stoppacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "POST",
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ "RequestBody": "{\r\n \"sasUrl\": \"https://sto2ps571.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=HgRFkJ%2F2pt33KafhzZHy59fuPdTzSo3QJdoRJccd%2BNQ%3D&st=2020-08-19T23%3A30%3A50Z&se=2020-08-21T00%3A30%3A50Z&sp=rwd\",\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a626ac0-4e10-4167-aeae-b88522ff9c33"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "273"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f5b72063-f8fe-4192-9feb-729e2cc30a77"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "df723cb0-ab0c-4bd7-b2c4-1968191a9db0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "acd19e29-ed42-4168-8800-44d5209c5a23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003431Z:df723cb0-ab0c-4bd7-b2c4-1968191a9db0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:31 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d9ab6fb7-b975-47a5-956f-aed3b4c30bf3"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5490f77-05e3-4562-9552-931dccbd51ed"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1ae9d311-3278-4d7f-95a4-0014e348b0e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003119Z:d5490f77-05e3-4562-9552-931dccbd51ed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "88aea355-bd70-4b3b-8ba2-34b4b5114f8a"
+ ],
+ "x-ms-correlation-request-id": [
+ "99bbe34c-a2c5-4fc3-bb21-be870bcb12c3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d2010ebd-f701-47f7-b9fc-2cf2a29aa25c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003129Z:99bbe34c-a2c5-4fc3-bb21-be870bcb12c3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "1f151311-bb86-4a62-840e-e8adcc284e7d"
+ ],
+ "x-ms-correlation-request-id": [
+ "affd7ed9-a2f6-4302-8af5-be3433c68e1f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f53890db-285a-47db-8d3b-85f9d04d9000"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003149Z:affd7ed9-a2f6-4302-8af5-be3433c68e1f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:31:48 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "8a396ebe-4d3a-41c9-aedd-bd067ec8be40"
+ ],
+ "x-ms-correlation-request-id": [
+ "c454b387-9a94-4622-b03f-6d43a2870231"
+ ],
+ "x-ms-arm-service-request-id": [
+ "432506c0-f4a6-4e38-9e5c-698a8bd32fcd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003229Z:c454b387-9a94-4622-b03f-6d43a2870231"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:32:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5b6df033-9040-4314-be1a-8ecab0a76e49"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a668b17-6501-49e8-9009-56f2c3ed4798"
+ ],
+ "x-ms-arm-service-request-id": [
+ "76f7bfed-062d-456a-b7f4-30042bb58612"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003409Z:4a668b17-6501-49e8-9009-56f2c3ed4798"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:09 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "dc793075-f5db-4d90-8250-a7a95a78c931"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6d617d3-18e7-49aa-b844-1f357a84ac2b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1c80439f-68f8-49d0-8a0a-b6f5f689f742"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003410Z:2a258920-6d42-4665-9b99-6b13eff4012b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:09 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGVlNjA4MGYtYjRiMy00NzYzLTkzY2MtZDc1MmVmZTI1YzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6402719e-e5aa-4cf5-8726-314121cb5b56"
+ ],
+ "x-ms-correlation-request-id": [
+ "63b3598f-a7dd-4ed5-8404-e975609187c5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "48c9020a-1a26-46dc-8c7e-4199f6815d01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003420Z:63b3598f-a7dd-4ed5-8404-e975609187c5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:20 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGVlNjA4MGYtYjRiMy00NzYzLTkzY2MtZDc1MmVmZTI1YzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f25aa5cc-10b9-4f4a-a11e-8cdd036eaa93"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2f1604c-9bcd-4d40-8537-ccb90e2eb35f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "318d76a1-8d82-4dae-beb8-18f8e9970dd1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003430Z:d2f1604c-9bcd-4d40-8537-ccb90e2eb35f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:29 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMGVlNjA4MGYtYjRiMy00NzYzLTkzY2MtZDc1MmVmZTI1YzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "0ee6080f-b4b3-4763-93cc-d752efe25c45"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "29fe05d2-7090-4d2f-8198-82e6984b2760"
+ ],
+ "x-ms-arm-service-request-id": [
+ "20f12159-d7e3-4b75-804d-4958d20d9044"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003430Z:4f99877a-bc54-46d6-ab35-a476673cd924"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:30 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6b94f190-fd4b-4928-936e-f4c9cba284ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "c388dc0f-63ee-485c-88f7-3122c4297db5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e213a032-b365-42a3-955d-85fa2b8611d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003441Z:c388dc0f-63ee-485c-88f7-3122c4297db5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:41 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "a8a54185-9e1a-40e2-a159-20406ed2a7cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "28951dfc-2101-473b-ba28-967cc28b1902"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d4412983-4b37-4fe4-ace0-2bd507197937"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003451Z:28951dfc-2101-473b-ba28-967cc28b1902"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:34:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "6f2c8156-183e-4886-ae41-0e67c4e3539e"
+ ],
+ "x-ms-correlation-request-id": [
+ "93c16128-7390-435b-8d41-6c4184c9bd51"
+ ],
+ "x-ms-arm-service-request-id": [
+ "41071120-6006-4640-81eb-aee871f83a22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003511Z:93c16128-7390-435b-8d41-6c4184c9bd51"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:35:11 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "fdbd4386-c16e-4fc5-b397-edf8ffe2ba14"
+ ],
+ "x-ms-correlation-request-id": [
+ "44cedafb-c4e2-4210-9c88-fd710ce8b3de"
+ ],
+ "x-ms-arm-service-request-id": [
+ "64101196-acbc-4628-8eff-751102956fce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003552Z:44cedafb-c4e2-4210-9c88-fd710ce8b3de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:35:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cbb1efd0-ded8-474d-9ab1-57d6c4e6841c"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2325dbc-5fe6-4b8f-bfbb-b1a1274e1f8e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "69cc6914-5ec7-4286-9d56-ff2e2174ea24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003732Z:b2325dbc-5fe6-4b8f-bfbb-b1a1274e1f8e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:37:31 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "f5b72063-f8fe-4192-9feb-729e2cc30a77"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "df723cb0-ab0c-4bd7-b2c4-1968191a9db0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "acd19e29-ed42-4168-8800-44d5209c5a23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003732Z:b51adb7e-172f-4afe-894f-ac1c788b5035"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:37:32 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b3426611-1bba-4b1e-b655-235ec3cb212e"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd4d896b-adc0-4abd-86b6-532e22ce47b7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6c62b1d7-3a82-47e5-9797-05895ba4b42e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003743Z:cd4d896b-adc0-4abd-86b6-532e22ce47b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:37:43 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "86c290ac-4aa6-4ae6-9b0d-032b0f914120"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ec8f2d7-11cc-4d2d-b025-b208c9f85dbb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "68012aec-9be3-465a-811a-6f94c5149de2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003753Z:5ec8f2d7-11cc-4d2d-b025-b208c9f85dbb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:37:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "b7c696e1-64f3-4c41-b579-b283286f640a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d88bf665-4b3e-45ea-a68e-848fa295b9bf"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2d19797b-7db9-43d4-ae79-6fc3e07055d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003813Z:d88bf665-4b3e-45ea-a68e-848fa295b9bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:38:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "4c14c0ea-28f6-46b7-a4a0-63418f46e42d"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd0a3a5a-6c0b-4473-a64b-1603d8f1dcd2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "dbdc43db-caaa-4093-b126-da1f11baac67"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T003853Z:bd0a3a5a-6c0b-4473-a64b-1603d8f1dcd2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:38:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "51cb731f-6056-4122-b425-65da47290cac"
+ ],
+ "x-ms-correlation-request-id": [
+ "efb7af07-61ba-4d7c-9b35-fd861e7cd0cf"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bccf0d6a-5251-4568-9227-83f492cad5dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004034Z:efb7af07-61ba-4d7c-9b35-fd861e7cd0cf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:40:33 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "576396da-067b-4588-abb8-d759b708e319"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "36d35a3c-3dc3-435e-a52e-95d616365f64"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "69eb370c-f33d-4ded-97a3-2cd70c45ec1e"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "267c8922-0b04-4af0-9cab-3b2dbaeb22a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004036Z:69eb370c-f33d-4ded-97a3-2cd70c45ec1e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:40:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d412029f-c9be-4f02-bc00-1097c2676b29"
+ ],
+ "x-ms-correlation-request-id": [
+ "06cb43a5-6f7c-426a-aefd-b01a1e849a94"
+ ],
+ "x-ms-arm-service-request-id": [
+ "61a59417-16af-41d3-a7d5-7e9d5fb383ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004046Z:06cb43a5-6f7c-426a-aefd-b01a1e849a94"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:40:46 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "4deb61b7-c8ac-4dff-aa43-9b7f42ba45e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "e05c7e33-adb9-4de9-8be2-4a7411fc41cc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "821fbbea-bb39-48c8-b6ac-ac5e09b9bb89"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004056Z:e05c7e33-adb9-4de9-8be2-4a7411fc41cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:40:56 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "c77126e4-e294-45d6-b7df-6fbc89bd0dac"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c2722b0-4ac8-45b0-b310-b0cdece0bfaa"
+ ],
+ "x-ms-arm-service-request-id": [
+ "dd22d4e7-dcc2-4dc4-804f-2ddf91ba8bd3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004116Z:6c2722b0-4ac8-45b0-b310-b0cdece0bfaa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:41:16 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "1b4c72ca-d883-4ffe-95a3-80baa613d3d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "24de0878-ad80-41be-b8b5-aa466f42e59d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7530e92d-4919-47ae-b825-0945f2eac939"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004136Z:24de0878-ad80-41be-b8b5-aa466f42e59d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:41:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "1fa8abff-e538-494b-9ddc-569edb1b0851"
+ ],
+ "x-ms-correlation-request-id": [
+ "e05a528e-923a-41e5-8c09-b92509f01897"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3023193f-efd0-4a9a-8fab-88815f98045c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004216Z:e05a528e-923a-41e5-8c09-b92509f01897"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:42:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "74c6aaf8-9b03-4e11-9d71-ff02e1d5ae1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e38de9b-054a-4270-8b67-fae76c4e89cf"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a7c72d19-b3d6-4a79-b53c-46358354a8ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004257Z:1e38de9b-054a-4270-8b67-fae76c4e89cf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:42:56 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "47609aeb-7f77-4116-ae20-a93acdef9258"
+ ],
+ "x-ms-correlation-request-id": [
+ "c701c33f-e214-4c14-a323-b465bf82dae8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "65c80b5c-8214-43e7-990e-64d959ad54af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004437Z:c701c33f-e214-4c14-a323-b465bf82dae8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:44:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "37d7ecd4-0b92-4d22-8e5b-471750de2d87"
+ ],
+ "x-ms-correlation-request-id": [
+ "ada69656-06ff-4c1d-b7ac-6092dafeba25"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1fce5afb-9803-4dcd-9288-4bdda23f2b5b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004617Z:ada69656-06ff-4c1d-b7ac-6092dafeba25"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:46:17 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "16fbc597-e1cb-485b-9f5a-af47d9468247"
+ ],
+ "x-ms-correlation-request-id": [
+ "9574815f-7107-4c76-a42c-d4d2266e034f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "07740ae4-a601-4084-b3fc-78a4668fe8ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004757Z:9574815f-7107-4c76-a42c-d4d2266e034f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:47:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "5385c3f5-35b9-4f0f-a209-6bc2b4fd41c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "026c16f9-53e9-43c6-bc94-36b0e2d5f2b2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4e8861a0-3b9a-49e3-9ec1-63f807cf4759"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T004938Z:026c16f9-53e9-43c6-bc94-36b0e2d5f2b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:49:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "7e671c2f-46e4-4960-80d2-535674ccd46f"
+ ],
+ "x-ms-correlation-request-id": [
+ "7439799e-8094-4f4a-aee2-36876e683fe8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "507055ab-3355-4ac0-a6ca-d09ed09cc534"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005118Z:7439799e-8094-4f4a-aee2-36876e683fe8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:51:17 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "300b7296-2714-4bfa-ad3e-c6b5095621a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad8a8d89-d4e8-4390-bd8d-6f9d8e36cddd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8881a8c8-ab88-4629-88d4-4aba0686d98e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005258Z:ad8a8d89-d4e8-4390-bd8d-6f9d8e36cddd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:52:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "41cbda0e-e669-41d1-9a0a-08a84204e8c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "2dfb85e4-d991-4d27-8ed8-4bd3fbea5ad9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "56d66a47-b940-4e75-b394-456775763abd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005439Z:2dfb85e4-d991-4d27-8ed8-4bd3fbea5ad9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:54:38 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "36d35a3c-3dc3-435e-a52e-95d616365f64"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "69eb370c-f33d-4ded-97a3-2cd70c45ec1e"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "267c8922-0b04-4af0-9cab-3b2dbaeb22a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005439Z:045d40b7-73b7-45fb-8549-8ca5a58ff5d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:54:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2df86f5-a88d-4dbc-b6b8-88c31210d655"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7d4f9c59-0633-4d56-8c1e-22816f684ef3"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d70a918b-569f-48f2-9126-6bd5d53d1a33"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9d9249bd-89fd-4d5a-b69a-cceb9fd90973"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005439Z:d70a918b-569f-48f2-9126-6bd5d53d1a33"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:54:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2Q0ZjljNTktMDYzMy00ZDU2LThjMWUtMjI4MTZmNjg0ZWYzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ca8a0e0d-33f2-4c20-8979-56ab9fa19d76"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ee965bf-5293-4acb-9219-e1cd250219fa"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4de9d516-9e65-43f1-83af-1040be14f18e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005450Z:7ee965bf-5293-4acb-9219-e1cd250219fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:54:49 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvN2Q0ZjljNTktMDYzMy00ZDU2LThjMWUtMjI4MTZmNjg0ZWYzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "7d4f9c59-0633-4d56-8c1e-22816f684ef3"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d70a918b-569f-48f2-9126-6bd5d53d1a33"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9d9249bd-89fd-4d5a-b69a-cceb9fd90973"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005450Z:58ea0162-99be-4126-8af4-b5e28a6321e4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:54:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "475624f6-095f-44fa-b720-9d19d5624b67"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b84e7932-27c5-454d-a208-9ab28ec8fcc3"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8f4e448-93f0-424f-b79e-d1ae536da067"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3b9cc3e1-e768-4bd0-9538-03c0e801e4fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005450Z:b8f4e448-93f0-424f-b79e-d1ae536da067"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:54:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "957d358c-3c4f-428e-b38f-4aa688b52449"
+ ],
+ "x-ms-correlation-request-id": [
+ "81e225ee-2301-4922-866b-6f21447ab7f8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "eb15f951-4d75-478c-ad6f-21c94f60bcd5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005500Z:81e225ee-2301-4922-866b-6f21447ab7f8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:55:00 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "b70883c2-7161-4dd5-89c8-4fc95cc26645"
+ ],
+ "x-ms-correlation-request-id": [
+ "49c07247-df00-4fc9-9f92-bc97ac9b1c23"
+ ],
+ "x-ms-arm-service-request-id": [
+ "08da5027-da25-404b-b3a8-ad6984457256"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005510Z:49c07247-df00-4fc9-9f92-bc97ac9b1c23"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:55:10 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "50fe1a31-a657-48f9-9db8-8db7682a442f"
+ ],
+ "x-ms-correlation-request-id": [
+ "13b3e9bc-68f5-4007-93db-ae7a8c17e986"
+ ],
+ "x-ms-arm-service-request-id": [
+ "60487148-3aa0-4cb8-81a3-4cf9501b9bc7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005530Z:13b3e9bc-68f5-4007-93db-ae7a8c17e986"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:55:30 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "ff6d4acb-917b-4e19-9c61-66a7f85dcc38"
+ ],
+ "x-ms-correlation-request-id": [
+ "97ab5764-9ca8-421b-869d-4b28f7c3554f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ee2a12be-97d1-4d6b-8358-988523b161e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005551Z:97ab5764-9ca8-421b-869d-4b28f7c3554f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:55:50 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "37f1f674-3ca2-4191-9cae-9e1373cca16d"
+ ],
+ "x-ms-correlation-request-id": [
+ "beeb6f09-c8ec-4747-a569-bff61a9ccf37"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d4204df4-1f54-4b1a-9835-c54fcb785d15"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005631Z:beeb6f09-c8ec-4747-a569-bff61a9ccf37"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:56:30 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "2ee3361e-4d78-4d23-87f3-10a213ee110a"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e848f49-8e30-4e62-bb58-068c5091201d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f410e722-b17b-4167-98a4-e5080398ba1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005711Z:5e848f49-8e30-4e62-bb58-068c5091201d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:57:10 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "7286b3f2-6607-4f08-9a67-a10cae103ee1"
+ ],
+ "x-ms-correlation-request-id": [
+ "94d0a2a9-f371-4af2-883e-d110ab551350"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3a1f9c26-7d0f-4c9b-9823-e84c2c613c8b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T005851Z:94d0a2a9-f371-4af2-883e-d110ab551350"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 00:58:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "357759e3-e38a-4d80-b009-ccb14e0c763d"
+ ],
+ "x-ms-correlation-request-id": [
+ "3adbde52-6d3f-4d92-8a4e-be71befa9b0c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3a5df36b-a6cb-4226-ab27-deb6621abd7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010031Z:3adbde52-6d3f-4d92-8a4e-be71befa9b0c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:00:31 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "1e9df99c-307a-4829-b753-c7af75dbe33d"
+ ],
+ "x-ms-correlation-request-id": [
+ "da009c3c-b965-43f3-8b08-6c4dd991b322"
+ ],
+ "x-ms-arm-service-request-id": [
+ "edf393b5-cea6-4b45-9941-3d0470bf4049"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010212Z:da009c3c-b965-43f3-8b08-6c4dd991b322"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:02:11 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5a8ae0b8-8d2e-4efd-a2d6-873d0e8f70c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e76d3f1-733b-4c9e-b061-834548114ab4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4dd76ec6-be2d-4479-8c97-7a0506caef59"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010352Z:0e76d3f1-733b-4c9e-b061-834548114ab4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:03:52 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "b84e7932-27c5-454d-a208-9ab28ec8fcc3"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8f4e448-93f0-424f-b79e-d1ae536da067"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3b9cc3e1-e768-4bd0-9538-03c0e801e4fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010352Z:7aa3afc8-13e6-453a-bf68-2e41213c9d1a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:03:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1384d59a-b1a8-470f-b11e-b514924e8d25"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1bb00c8b-4fa8-48b8-9370-f3a33ab131b4"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "57ed2571-75cd-4527-87f4-8accdc69f343"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8315546c-9a88-4800-89e0-592130732933"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010352Z:57ed2571-75cd-4527-87f4-8accdc69f343"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:03:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWJiMDBjOGItNGZhOC00OGI4LTkzNzAtZjNhMzNhYjEzMWI0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b302acdf-bee9-4fe1-8ee5-8c88ef70a42d"
+ ],
+ "x-ms-correlation-request-id": [
+ "e91781c1-30dd-4b77-b0e6-705dfc768afb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8f5167ce-a792-483b-9ae2-1d5dad9c0928"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010402Z:e91781c1-30dd-4b77-b0e6-705dfc768afb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:04:02 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMWJiMDBjOGItNGZhOC00OGI4LTkzNzAtZjNhMzNhYjEzMWI0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "1bb00c8b-4fa8-48b8-9370-f3a33ab131b4"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "57ed2571-75cd-4527-87f4-8accdc69f343"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8315546c-9a88-4800-89e0-592130732933"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010403Z:89bb9de8-1db0-4c68-ae67-ce13616663ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:04:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps571?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzNTcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ccda1eb-1c53-488c-9dd5-bedb8e12e31b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "c43c27f5-9011-44f3-8f78-89400d5a95c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "c43c27f5-9011-44f3-8f78-89400d5a95c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010404Z:c43c27f5-9011-44f3-8f78-89400d5a95c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:04:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "e4374414-ad67-448a-8d8b-37fa1efe9a91"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4374414-ad67-448a-8d8b-37fa1efe9a91"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010419Z:e4374414-ad67-448a-8d8b-37fa1efe9a91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:04:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "6b733f9c-0210-4615-bb71-9faa2abd0ab6"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b733f9c-0210-4615-bb71-9faa2abd0ab6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010435Z:6b733f9c-0210-4615-bb71-9faa2abd0ab6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:04:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "ff9dd18d-4007-49ed-9e34-81cf921faf02"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff9dd18d-4007-49ed-9e34-81cf921faf02"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010450Z:ff9dd18d-4007-49ed-9e34-81cf921faf02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:04:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "6f431a12-24b4-4692-b042-c6d91970a048"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f431a12-24b4-4692-b042-c6d91970a048"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010505Z:6f431a12-24b4-4692-b042-c6d91970a048"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:05:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "e14c3fdc-4092-4497-824b-fa8920f28020"
+ ],
+ "x-ms-correlation-request-id": [
+ "e14c3fdc-4092-4497-824b-fa8920f28020"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010520Z:e14c3fdc-4092-4497-824b-fa8920f28020"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:05:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "097dd19d-6541-4768-aa5b-03f0e121b253"
+ ],
+ "x-ms-correlation-request-id": [
+ "097dd19d-6541-4768-aa5b-03f0e121b253"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010535Z:097dd19d-6541-4768-aa5b-03f0e121b253"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:05:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "91323707-8404-4057-995b-c385fbdba284"
+ ],
+ "x-ms-correlation-request-id": [
+ "91323707-8404-4057-995b-c385fbdba284"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010550Z:91323707-8404-4057-995b-c385fbdba284"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:05:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "d9ab2f18-2f21-43d6-9acd-559c74ed9633"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9ab2f18-2f21-43d6-9acd-559c74ed9633"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200820T010551Z:d9ab2f18-2f21-43d6-9acd-559c74ed9633"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2020 01:05:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-VpnConnectionPacketCapture": [
+ "ps571",
+ "ps1450",
+ "ps8475",
+ "ps1520",
+ "ps5630",
+ "ps4922",
+ "ps8868",
+ "ps9054",
+ "ps1039",
+ "ps35",
+ "ps5584",
+ "ps1645"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "79ea0716-8a0e-4e48-a348-e3952d79809e"
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json
new file mode 100644
index 000000000000..226a44a6ebff
--- /dev/null
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json
@@ -0,0 +1,7100 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps2542?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "284b42df-6043-46f5-a103-ee7e81802604"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "37"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "1754e5dd-d88f-4029-9e9a-2b9c0fc928af"
+ ],
+ "x-ms-correlation-request-id": [
+ "1754e5dd-d88f-4029-9e9a-2b9c0fc928af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202026Z:1754e5dd-d88f-4029-9e9a-2b9c0fc928af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:25 GMT"
+ ],
+ "Content-Length": [
+ "172"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542\",\r\n \"name\": \"ps2542\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "377654d2-62bd-4441-94fd-71ad06ffb69a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "9ae68f6d-d386-4ce2-9469-f4d0439ad7c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ae68f6d-d386-4ce2-9469-f4d0439ad7c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202026Z:9ae68f6d-d386-4ce2-9469-f4d0439ad7c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "214"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps4930' under resource group 'ps2542' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\""
+ ],
+ "x-ms-request-id": [
+ "0efb03b6-3634-40f1-a683-9a5a09e45b0b"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f0d72c2-5baa-4cad-9b13-ef366c6accf4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "52abca8b-9631-476e-9148-7afbef49037e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202037Z:0f0d72c2-5baa-4cad-9b13-ef366c6accf4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:37 GMT"
+ ],
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "673dd042-2dc5-414b-87c6-aeb256420722"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\""
+ ],
+ "x-ms-request-id": [
+ "fa939209-3a8a-4a79-aaec-d941ed947b3e"
+ ],
+ "x-ms-correlation-request-id": [
+ "896719bd-bda5-4b65-abd5-3c0a0262100d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9cfde304-cbe2-4f7a-9dae-8c140c7609d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202037Z:896719bd-bda5-4b65-abd5-3c0a0262100d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:37 GMT"
+ ],
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0f2d6e2-7b87-4e16-a1c7-c566f2947d70"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\""
+ ],
+ "x-ms-request-id": [
+ "8a4dd073-59e4-456b-b4bd-7f380abdc0f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "faa59f45-0f7d-48f9-8ef8-a6ac0600eeb7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ebdc028c-ae84-4fd6-9b34-8c09e1387ae1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202038Z:faa59f45-0f7d-48f9-8ef8-a6ac0600eeb7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:37 GMT"
+ ],
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "74779e2d-a80e-4c6b-b5d3-ab59c0fe561b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\""
+ ],
+ "x-ms-request-id": [
+ "cba7edf1-5da3-4980-9a4a-d03c3e206f5e"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a92380e-2c17-485a-82e0-c6267999a4ef"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6a6367da-423e-4379-879a-18e58bfa0033"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202038Z:9a92380e-2c17-485a-82e0-c6267999a4ef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:38 GMT"
+ ],
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6729028f-d7f4-463c-a967-c32999a170fb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "164"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f12b1645-cf20-4147-a066-0f743ad28f5b"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f12b1645-cf20-4147-a066-0f743ad28f5b?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "2794918c-3409-45e6-afb3-44c141552f4f"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a295d2f2-a927-4b4e-872e-150c5724a289"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202027Z:2794918c-3409-45e6-afb3-44c141552f4f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:26 GMT"
+ ],
+ "Content-Length": [
+ "501"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"1be085e9-061c-454b-a2e6-fb4f36fe589f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f12b1645-cf20-4147-a066-0f743ad28f5b?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YxMmIxNjQ1LWNmMjAtNDE0Ny1hMDY2LTBmNzQzYWQyOGY1Yj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3e5773f0-cf76-4e77-ba2f-775867b80f4e"
+ ],
+ "x-ms-correlation-request-id": [
+ "7763cfd3-d353-4054-b24b-65e69be3ae44"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e6319b5a-70f7-4560-acfc-4cdb584b4643"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202037Z:7763cfd3-d353-4054-b24b-65e69be3ae44"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:37 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "864e1f7a-0b69-4e3c-8ca8-f41d68043d3a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "d68a1660-2657-4ed7-9919-c7eade525d13"
+ ],
+ "x-ms-correlation-request-id": [
+ "d68a1660-2657-4ed7-9919-c7eade525d13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202038Z:d68a1660-2657-4ed7-9919-c7eade525d13"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "214"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps7785' under resource group 'ps2542' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f71ede5b-b70b-492d-a18e-c5947865c82b"
+ ],
+ "x-ms-correlation-request-id": [
+ "64351822-c2fa-4688-8c7e-7207475c728c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f290f503-910c-42d1-821b-191552b177b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202620Z:64351822-c2fa-4688-8c7e-7207475c728c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:19 GMT"
+ ],
+ "Content-Length": [
+ "758"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"6a283720-0d5e-4b29-bb90-6bc5dd242ef7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e5052860-f46b-4bc1-b479-37ecf3e50287"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "aa8208d8-7905-4fbb-898b-165cfce779a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9fef011-e709-4c38-aab3-d43501f9357f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ab7aa25c-f3fb-4bf0-a733-d175cc139bc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202620Z:d9fef011-e709-4c38-aab3-d43501f9357f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:20 GMT"
+ ],
+ "Content-Length": [
+ "758"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"6a283720-0d5e-4b29-bb90-6bc5dd242ef7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60a01432-12a2-4668-8b46-e2d8c71ef70c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d82b0fe6-52c5-4cd7-b6fb-f5dda5d20e0b"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fa9332a-2b9d-4fc6-80b9-6d881508621b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bed53e94-5925-48db-90ec-3251217f72d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202621Z:3fa9332a-2b9d-4fc6-80b9-6d881508621b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:21 GMT"
+ ],
+ "Content-Length": [
+ "758"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"6a283720-0d5e-4b29-bb90-6bc5dd242ef7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1223b7c-4431-4bbb-971a-0c0d9a0a31dc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "352"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a81bea89-29a0-4c7e-afed-19a9704c8686"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8e0f6cc-c844-4354-92cd-ee14ee348288"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4257aa16-7c73-4e2a-a5be-f32af4763211"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202039Z:c8e0f6cc-c844-4354-92cd-ee14ee348288"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:39 GMT"
+ ],
+ "Content-Length": [
+ "749"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"448ffdfc-8691-4a5a-9701-694b74d080a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "36e319ee-6b24-4882-81ed-429c240385c5"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2d2aec4-8acb-4b0e-b180-2548875de104"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bf841fd6-037f-4080-800f-4de28823e035"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202049Z:c2d2aec4-8acb-4b0e-b180-2548875de104"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:49 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "25ceb399-3d7e-45e7-8e2a-a75242e1aceb"
+ ],
+ "x-ms-correlation-request-id": [
+ "a586a5b8-8e81-4913-af9a-36ccaeff6b8c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e5060100-54cc-4c76-983d-a01f9d3e17f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202059Z:a586a5b8-8e81-4913-af9a-36ccaeff6b8c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:20:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "4542046c-671e-4451-9979-907d5dd9974e"
+ ],
+ "x-ms-correlation-request-id": [
+ "22c45a78-4b89-4ed7-a002-ef7bf96b1b37"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e7e77336-f2ef-4bf5-a60d-dfa0a7198069"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202119Z:22c45a78-4b89-4ed7-a002-ef7bf96b1b37"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:21:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "d6f6c3c1-cc7d-43fd-8a27-39eb598157b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "23746af5-415f-4a8c-95cd-18f54cc09363"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c43ee641-f395-48ed-8e6d-09a4ded91e08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202139Z:23746af5-415f-4a8c-95cd-18f54cc09363"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:21:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "9403aeb5-768e-45c3-9d1a-53f50309c9d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "01fe81f2-6331-4974-8f57-c829335fc971"
+ ],
+ "x-ms-arm-service-request-id": [
+ "332ea1cd-67f0-4a8e-84f5-620b16e83f40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202220Z:01fe81f2-6331-4974-8f57-c829335fc971"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:22:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "e9b129cb-e6d0-400c-a460-b7559c818907"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2aa5dfa-cc45-46ed-a0dc-f9d84d69777e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b1717863-a942-454d-9530-761f1be85be8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202300Z:b2aa5dfa-cc45-46ed-a0dc-f9d84d69777e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:22:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "aa4c5717-36c1-4739-8d28-50a415f64755"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fa897a1-3737-4ba2-bc61-308aa47e91d0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c26e3ecb-67cf-4717-8cbf-a34226711b66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202440Z:5fa897a1-3737-4ba2-bc61-308aa47e91d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:24:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f9af644f-aeeb-4bb7-8558-78b5fef5094f"
+ ],
+ "x-ms-correlation-request-id": [
+ "823be4a7-9445-4753-8988-2f49907727ea"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c3762385-ce3a-41fa-8b8b-7442d46149bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202620Z:823be4a7-9445-4753-8988-2f49907727ea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:19 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785/hubVirtualNetworkConnections?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1L2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8badd8ad-1dc9-495b-8cb5-2292f0efb980"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "836d59c8-6d54-4642-a969-5869c78b9a6d"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc9503eb-c26d-4fb1-9949-927168376860"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a17b540c-8f56-4ce6-b1b0-7359761728c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202620Z:dc9503eb-c26d-4fb1-9949-927168376860"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:20 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785/hubVirtualNetworkConnections?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1L2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d107c51b-33b4-4fc9-b2d1-6baecff3edb5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a358b684-ebb1-45e3-9e04-cb33977b52a6"
+ ],
+ "x-ms-correlation-request-id": [
+ "192d3bf6-3664-4dd1-8aed-275639decd8f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7da3b116-fbee-487c-9a31-1356d08d2019"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202621Z:192d3bf6-3664-4dd1-8aed-275639decd8f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:21 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5a3c27c7-f39f-4e45-ad9a-f9ee5a337179"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "610c32e7-f070-4e75-a4e3-38b164f278dc"
+ ],
+ "x-ms-correlation-request-id": [
+ "610c32e7-f070-4e75-a4e3-38b164f278dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202621Z:610c32e7-f070-4e75-a4e3-38b164f278dc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "214"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnGateways/ps3158' under resource group 'ps2542' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0ebbe064-2d52-4884-9899-5a97e7c2951a"
+ ],
+ "x-ms-correlation-request-id": [
+ "3548470f-482f-4055-94be-42c800d1783c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "60415953-948b-4176-a81f-a281d94af470"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205205Z:3548470f-482f-4055-94be-42c800d1783c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:05 GMT"
+ ],
+ "Content-Length": [
+ "1595"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"fc49a69d-80d5-4a96-847a-b56990977ef9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.3.51\",\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.4.128\",\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.159.3.51\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.159.4.128\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a5c4c62f-91f2-440e-9eee-26ecca776d0c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3da8a4c1-a9f0-4dbb-87c3-9ad7f7581349"
+ ],
+ "x-ms-correlation-request-id": [
+ "2487eaa7-6de6-48f4-8134-128162b90fc0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "71c2d04f-0595-4ccf-90af-2097e5436d1e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205225Z:2487eaa7-6de6-48f4-8134-128162b90fc0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:25 GMT"
+ ],
+ "Content-Length": [
+ "1595"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"fc49a69d-80d5-4a96-847a-b56990977ef9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.3.51\",\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.4.128\",\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.159.3.51\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.159.4.128\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ded6685e-1884-44bb-9de8-7970efa7d97f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "afd9aca6-cd28-4c42-b0e6-b1749b389c22"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d688a83-6f3c-4732-b443-9e70bff8fa07"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e6621bcf-cae3-4c0e-bc52-478ca0183fd8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205235Z:6d688a83-6f3c-4732-b443-9e70bff8fa07"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:34 GMT"
+ ],
+ "Content-Length": [
+ "1598"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"ce427951-542b-46aa-a3ea-b8556b58c921\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.3.51\",\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.4.128\",\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.159.3.51\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.159.4.128\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"connections\": [],\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"location\": \"westcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42f7ae40-b697-4ca4-8bcc-a78bf2163b94"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "279"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "96ff03b0-64a5-41fe-a140-21a11ac0395c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd1fb29c-7ec0-4ed0-8d67-c1feffcbdf83"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "42a2a634-0096-4dbd-9240-636d8c72a224"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202622Z:fd1fb29c-7ec0-4ed0-8d67-c1feffcbdf83"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:21 GMT"
+ ],
+ "Content-Length": [
+ "720"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"c6493817-0f92-4951-b1f9-11f0abeaf309\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": []\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a4b20642-ab0c-4263-8f2b-74348901e3a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "d76f42d5-a863-4669-ad1f-9412de486ca6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b68e8f26-8999-4e3c-b30c-293ee9e55e58"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202632Z:d76f42d5-a863-4669-ad1f-9412de486ca6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:32 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "8cdce756-a3fb-44e8-aa43-3bbbcdd6017e"
+ ],
+ "x-ms-correlation-request-id": [
+ "10db03b1-7294-4229-b90c-3c5631d61591"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8cb767b5-e456-4aa0-9672-617f8861e1bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202642Z:10db03b1-7294-4229-b90c-3c5631d61591"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:26:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "646c8567-a3af-417f-a6bf-ed590262560d"
+ ],
+ "x-ms-correlation-request-id": [
+ "04a19cdf-a802-4a3d-a8b8-76f11b326c41"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a186ad9b-2895-486a-9474-f4ad87557b67"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202703Z:04a19cdf-a802-4a3d-a8b8-76f11b326c41"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:27:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "f5cc2af3-e3b3-4991-a93d-9bd68cac15e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "1704e41a-d4f3-441b-9582-282fa10b9c20"
+ ],
+ "x-ms-arm-service-request-id": [
+ "170c16d2-b842-4f78-a53a-aec2a9eb3554"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202723Z:1704e41a-d4f3-441b-9582-282fa10b9c20"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:27:22 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "06acb345-3d19-472f-8ffe-730beb97027e"
+ ],
+ "x-ms-correlation-request-id": [
+ "2390799b-12a0-4637-8edb-fc3dda54af8e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9d7ddfa9-cd03-4aa8-86da-4d8bd7f21768"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202803Z:2390799b-12a0-4637-8edb-fc3dda54af8e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:28:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "2f312dc5-e807-4efb-a68e-47ef7b5db5d8"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a6a11a2-a246-4b4a-8686-d9a7f795e61e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ecf6d553-db83-4603-a8a2-4db22727ee9c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T202843Z:0a6a11a2-a246-4b4a-8686-d9a7f795e61e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:28:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "e33adc81-7719-44c6-a598-f16369a859e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "18ec906c-ebe5-4ec7-bd32-cf4f7aefbf74"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9f9a0aaf-9c82-468f-b347-15842ea6ac04"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T203023Z:18ec906c-ebe5-4ec7-bd32-cf4f7aefbf74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:30:22 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "cf85946b-0ad8-4904-9f45-cd3da73a3d5f"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb17d1b6-78b4-41e3-ab94-3507731cdabd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "69aba231-7979-444f-8ccf-c1b5611beb3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T203203Z:fb17d1b6-78b4-41e3-ab94-3507731cdabd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:32:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "3b7e8539-6a04-4b08-aa51-f29585b98d72"
+ ],
+ "x-ms-correlation-request-id": [
+ "66d70b32-3c40-4eae-b3ff-19aee46def0e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "53d531d2-06f0-4e8e-a44b-1a8c8be694b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T203343Z:66d70b32-3c40-4eae-b3ff-19aee46def0e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:33:43 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "77dd148a-9a85-4bb3-a818-7c94c4267b43"
+ ],
+ "x-ms-correlation-request-id": [
+ "68d3e152-b041-4d89-8481-134fdfa602ef"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0883bdfa-a768-4ae3-928d-efd27557743f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T203523Z:68d3e152-b041-4d89-8481-134fdfa602ef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:35:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "29bb2482-4bb9-469d-b1dc-663f7f06a8d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7035381-262a-4f3a-a75d-968bbb7a93b3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "22dc7e9d-c078-4b0e-960f-2c5657cc6121"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T203704Z:c7035381-262a-4f3a-a75d-968bbb7a93b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:37:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "5e3a5f4c-4527-453d-ba7f-1a48ce99eea5"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ef8ac03-abcd-4d75-a7c0-e3dca43a39c1"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0823d6e0-1d47-4ed4-8d59-420adc4bf30e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T203844Z:8ef8ac03-abcd-4d75-a7c0-e3dca43a39c1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:38:43 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "be0223bc-985d-467c-b590-c7875d3b9b42"
+ ],
+ "x-ms-correlation-request-id": [
+ "166d4251-9b1c-4022-a6ec-584add149dd1"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3c40b87e-3c2b-41f5-8bfc-e8b26741ace4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T204024Z:166d4251-9b1c-4022-a6ec-584add149dd1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:40:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "349ba176-2a52-4d53-b63a-93865e439bf2"
+ ],
+ "x-ms-correlation-request-id": [
+ "75bad162-a8e2-445b-8b06-244188e2658b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b45a1b5d-4c0d-4e1e-83ac-a5d217fc8e01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T204204Z:75bad162-a8e2-445b-8b06-244188e2658b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:42:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "0171b663-519e-4c82-9b75-8f3f8acaf5b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "bda07470-32ea-4899-a0d2-b08f0c0d4f0b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2ac1e59f-1228-42a8-9986-57c70ae0f5ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T204344Z:bda07470-32ea-4899-a0d2-b08f0c0d4f0b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:43:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "8483bea9-49fc-416e-a686-3576972d20ba"
+ ],
+ "x-ms-correlation-request-id": [
+ "478bc07c-f519-4281-b7c5-678cfbf7e9f7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9bf362bb-e209-4839-b094-10ba7b79dfb9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T204524Z:478bc07c-f519-4281-b7c5-678cfbf7e9f7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:45:24 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "29855159-59a8-414d-b500-c9dd995c332f"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee3ad370-0cd1-45f8-b3d1-aa576030a6e9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9a8bc84b-d381-4c65-87c2-2863d7102536"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T204704Z:ee3ad370-0cd1-45f8-b3d1-aa576030a6e9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:47:04 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "22cb9b22-76de-46d5-ab9d-df0261298585"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc1b3a4b-9959-4e5a-9a51-526a7d432453"
+ ],
+ "x-ms-arm-service-request-id": [
+ "45f72680-fa04-4f9b-ab97-c46a41388743"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T204845Z:cc1b3a4b-9959-4e5a-9a51-526a7d432453"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:48:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "3da7b02c-238e-47ed-96be-29fe083af292"
+ ],
+ "x-ms-correlation-request-id": [
+ "05174957-be73-444a-a291-dda878f8f036"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ed9f94ea-eefb-4add-9f5b-756c3e044d52"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205025Z:05174957-be73-444a-a291-dda878f8f036"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:50:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0ba697d4-20ef-4c3b-8033-e6dcba91861c"
+ ],
+ "x-ms-correlation-request-id": [
+ "250d2fd0-90a5-49ae-b42f-edab7b5b874e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "060da2fe-b640-4048-9b21-755faba0b605"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205205Z:250d2fd0-90a5-49ae-b42f-edab7b5b874e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:05 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"stops2542\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4175fdf-c537-4b33-8a4d-c3ff98481709"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "75"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "abd957c5-e681-42ea-a966-ae25be7c507a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "241d66d9-cf8a-4968-9b3a-b0d80355a5ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205205Z:241d66d9-cf8a-4968-9b3a-b0d80355a5ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:05 GMT"
+ ],
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "129c7459-45d8-48d5-8292-fa7726a81791"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a525aaec-f058-412a-ae54-4fb1dfb9f253?monitor=true&api-version=2019-06-01"
+ ],
+ "Retry-After": [
+ "17"
+ ],
+ "x-ms-request-id": [
+ "a525aaec-f058-412a-ae54-4fb1dfb9f253"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "20b423b8-8c6f-4f39-a31a-2917428e7d05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205207Z:20b423b8-8c6f-4f39-a31a-2917428e7d05"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:06 GMT"
+ ],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a525aaec-f058-412a-ae54-4fb1dfb9f253?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvYTUyNWFhZWMtZjA1OC00MTJhLWFlNTQtNGZiMWRmYjlmMjUzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "75f02b8e-7e1a-41fe-bf6f-59deddcfcdd4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "d394b2e3-69cb-4852-b1a9-ab298836c0ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205224Z:d394b2e3-69cb-4852-b1a9-ab298836c0ad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:23 GMT"
+ ],
+ "Content-Length": [
+ "1277"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542\",\r\n \"name\": \"stops2542\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-19T20:52:06.5977168Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stops2542.dfs.core.windows.net/\",\r\n \"web\": \"https://stops2542.z4.web.core.windows.net/\",\r\n \"blob\": \"https://stops2542.blob.core.windows.net/\",\r\n \"queue\": \"https://stops2542.queue.core.windows.net/\",\r\n \"table\": \"https://stops2542.table.core.windows.net/\",\r\n \"file\": \"https://stops2542.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39558780-b5bb-4833-b9bf-79ef6db3ab5e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6ece2d38-40b1-434d-baf1-f4837829b57c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "4adc72e6-dda2-4353-86e5-bfd50bf4113f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205224Z:4adc72e6-dda2-4353-86e5-bfd50bf4113f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:24 GMT"
+ ],
+ "Content-Length": [
+ "1277"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542\",\r\n \"name\": \"stops2542\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-19T20:52:06.5977168Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stops2542.dfs.core.windows.net/\",\r\n \"web\": \"https://stops2542.z4.web.core.windows.net/\",\r\n \"blob\": \"https://stops2542.blob.core.windows.net/\",\r\n \"queue\": \"https://stops2542.queue.core.windows.net/\",\r\n \"table\": \"https://stops2542.table.core.windows.net/\",\r\n \"file\": \"https://stops2542.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542/listKeys?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzMjU0Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ebe969f-51f7-431b-be74-b65a077a1eeb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e7059cad-b7e6-4ac7-acdb-cdce34cc2db7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebf27a38-074d-422f-af87-1cca4d0df14a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205224Z:ebf27a38-074d-422f-af87-1cca4d0df14a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:23 GMT"
+ ],
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"UG+r5LOMB0MsK9BgJnjkPAUfOtsDN6Mk6oNU0WViHeOfj9/Ac3yUqy0QLzEmRQ/tK8LTgmqaygvznBe1gt2otA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"ICjwCmc3YREDmUyzlccxCrCLWaWfvWAUWRiMd3Bj8HRV/BV6DWNrE5E3XvUIieJa/25m7VcVrt3YOBzMDnmA8A==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/startpacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a31c9df3-6661-4ec4-add1-3eb91a1d245f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3afd05fd-9d11-4a95-9b34-109dfbd6a81a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "deeedb73-8e5b-456b-8e92-492629e765e8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "417cdae0-e6d0-45f1-be8a-beaf885ee538"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205225Z:deeedb73-8e5b-456b-8e92-492629e765e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/startpacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"filterData\": \"{\\\"TracingFlags\\\":11,\\\"MaxPacketBufferSize\\\":120,\\\"MaxFileSize\\\":500,\\\"Filters\\\":[{\\\"SourceSubnets\\\":[\\\"10.19.0.4/32\\\",\\\"10.20.0.4/32\\\"],\\\"DestinationSubnets\\\":[\\\"10.20.0.4/32\\\",\\\"10.19.0.4/32\\\"],\\\"IpSubnetValueAsAny\\\":true,\\\"TcpFlags\\\":-1,\\\"PortValueAsAny\\\":true,\\\"CaptureSingleDirectionTrafficOnly\\\":true}]}\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87487e71-f616-4b68-94ad-0a2f0e066584"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "333"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "633a75dc-67fb-4293-ab94-bb75dae9bc9b"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed1a43bd-be8f-485d-93b8-f354562417a6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "09d1f3e6-bafe-41b2-b268-59eeef62dd27"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205346Z:ed1a43bd-be8f-485d-93b8-f354562417a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNhZmQwNWZkLTlkMTEtNGE5NS05YjM0LTEwOWRmYmQ2YTgxYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2b961360-c1c1-440b-81ed-6a02079cb6b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "260f5a6d-4a1c-4c1c-a97a-94b0028d7d7b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "41261b94-2ac2-4468-8cc2-7d2292c038a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205235Z:260f5a6d-4a1c-4c1c-a97a-94b0028d7d7b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:35 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzNhZmQwNWZkLTlkMTEtNGE5NS05YjM0LTEwOWRmYmQ2YTgxYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "3afd05fd-9d11-4a95-9b34-109dfbd6a81a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "deeedb73-8e5b-456b-8e92-492629e765e8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "417cdae0-e6d0-45f1-be8a-beaf885ee538"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205235Z:633a08e6-7b2a-4a8d-a523-ee22462e23d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:35 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/stoppacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "POST",
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ "RequestBody": "{\r\n \"sasUrl\": \"https://stops2542.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=%2FLNB%2B6g7RW2ccJxcT2kDNsoZmDjRNCaZnTEW%2FgtdrWg%3D&st=2020-08-19T19%3A52%3A27Z&se=2020-08-20T20%3A52%3A27Z&sp=rwd\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c4f6ba67-c2d5-4953-a2e5-7afe4d601903"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "212"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f8145154-3319-4a25-877b-44c8244bb8d8"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cb78305-5eca-4364-85fe-eab01f4d50a5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c4f404bf-3f0e-42a1-b88b-1a5299edcbaf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205235Z:8cb78305-5eca-4364-85fe-eab01f4d50a5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/stoppacketcapture?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "POST",
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ "RequestBody": "{\r\n \"sasUrl\": \"https://stops2542.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=%2FLNB%2B6g7RW2ccJxcT2kDNsoZmDjRNCaZnTEW%2FgtdrWg%3D&st=2020-08-19T19%3A52%3A27Z&se=2020-08-20T20%3A52%3A27Z&sp=rwd\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6281e165-223a-4a84-aa23-12e497eca419"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "212"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "28dbd0fe-0ac8-4d68-90a6-bc7788e04857"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bfff5c3-147f-4681-8130-599a040f6fca"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9c8e906b-0d5c-4c2d-b224-ed5348826840"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205357Z:0bfff5c3-147f-4681-8130-599a040f6fca"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "ef04957d-97b6-43cf-8937-a3ea8d9c7fa7"
+ ],
+ "x-ms-correlation-request-id": [
+ "82c5a2ed-df90-44cc-9f5a-a4c2b1654e42"
+ ],
+ "x-ms-arm-service-request-id": [
+ "687cd2c9-4074-47e4-9221-0fcbc2f0b876"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205246Z:82c5a2ed-df90-44cc-9f5a-a4c2b1654e42"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:52:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "71842758-51e0-45b0-832d-ce3c551e49a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "39c146e0-62d8-49c9-a2ae-f53f7d39e5f4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2a9d39d6-30f6-4d39-882d-5a4f72552466"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205306Z:39c146e0-62d8-49c9-a2ae-f53f7d39e5f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:05 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a9a66fef-dc1b-4226-8c3f-3d553ec280a5"
+ ],
+ "x-ms-correlation-request-id": [
+ "3841f7b3-7f38-47e5-964c-4f97df983e7f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1a651c36-e574-42c9-999a-cb35a7fbde93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205346Z:3841f7b3-7f38-47e5-964c-4f97df983e7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:45 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "f8145154-3319-4a25-877b-44c8244bb8d8"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cb78305-5eca-4364-85fe-eab01f4d50a5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c4f404bf-3f0e-42a1-b88b-1a5299edcbaf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205346Z:68e2f5a6-a4cb-4f34-b2b4-7ac21db3a425"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:45 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzM2E3NWRjLTY3ZmItNDI5My1hYjk0LWJiNzVkYWU5YmM5Yj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "18354e94-b571-4243-8189-89fad11f1dca"
+ ],
+ "x-ms-correlation-request-id": [
+ "85b76581-ec1c-4ef4-a946-9449062fe087"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9f0c1b8f-8658-4132-abee-952f11702f70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205356Z:85b76581-ec1c-4ef4-a946-9449062fe087"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:56 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzM2E3NWRjLTY3ZmItNDI5My1hYjk0LWJiNzVkYWU5YmM5Yj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "633a75dc-67fb-4293-ab94-bb75dae9bc9b"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed1a43bd-be8f-485d-93b8-f354562417a6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "09d1f3e6-bafe-41b2-b268-59eeef62dd27"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205356Z:d8a01f2b-2550-4e66-9a58-a77914fbe9a0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:53:56 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f69e8e1e-b1eb-476c-a168-7d0f70e0da40"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c748027-b082-4ad6-9d5b-d9cc9e25d704"
+ ],
+ "x-ms-arm-service-request-id": [
+ "62721645-9b1c-44eb-9a7f-6bcdca2d6e38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205407Z:4c748027-b082-4ad6-9d5b-d9cc9e25d704"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:54:07 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "00d93b3d-2ebf-41dd-8ef6-3c0e58298b32"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5e137d4-b255-40ee-a026-24d7224effa9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2893a5b9-e9d5-4ee2-9edc-14fe7c1d6aa2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205417Z:a5e137d4-b255-40ee-a026-24d7224effa9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:54:17 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "e8309a26-789d-47b5-a911-b295f57aad60"
+ ],
+ "x-ms-correlation-request-id": [
+ "72c5257b-6dd9-4f4d-a321-1addcacdde49"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c1fce1cd-7fa4-4e84-954c-896af464faad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205437Z:72c5257b-6dd9-4f4d-a321-1addcacdde49"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:54:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f910c32e-87f5-41f7-9b4f-5368592b3ada"
+ ],
+ "x-ms-correlation-request-id": [
+ "09c54c80-fa71-43af-af64-ccc5bf0c3c67"
+ ],
+ "x-ms-arm-service-request-id": [
+ "984823e3-b032-44d5-968e-1e997f8e8c73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205517Z:09c54c80-fa71-43af-af64-ccc5bf0c3c67"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:55:16 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "28dbd0fe-0ac8-4d68-90a6-bc7788e04857"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bfff5c3-147f-4681-8130-599a040f6fca"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9c8e906b-0d5c-4c2d-b224-ed5348826840"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205517Z:89189464-4a03-428b-a1c9-28d797f43b1a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:55:17 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "08a6acc0-f188-469c-b1a9-357c799e72e3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "50af89b9-5d18-4554-b3fd-d137a2bfaa36"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a98b9844-7769-42a7-b8db-a8a60c9553e0"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1269e0a1-4517-4912-99c1-fecd62c721af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205518Z:a98b9844-7769-42a7-b8db-a8a60c9553e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:55:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "adf9e5bf-341c-48f8-b36a-cd2cd526621e"
+ ],
+ "x-ms-correlation-request-id": [
+ "d540eba7-e60a-4b77-abd0-bd0c2454e1d0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a39b3c94-9b26-45c0-8795-5f5f3a0f33ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205528Z:d540eba7-e60a-4b77-abd0-bd0c2454e1d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:55:27 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "02ce3b34-bb7b-4036-bb2f-ad8142eb2735"
+ ],
+ "x-ms-correlation-request-id": [
+ "607735c7-e689-47e2-aba8-5bf44f95270d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "04b94abd-9bb9-42f6-b72f-affe591262a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205538Z:607735c7-e689-47e2-aba8-5bf44f95270d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:55:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "53b999d8-2a2d-423a-bd2e-e3bee5beea32"
+ ],
+ "x-ms-correlation-request-id": [
+ "95cad6ad-1458-4d73-a842-6d6bc5359acf"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0557e39b-585a-4322-b31a-71d173c7206c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205558Z:95cad6ad-1458-4d73-a842-6d6bc5359acf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:55:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "4db0374f-de07-44db-900a-9b4d8c7013e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b36abd1-c88a-45d1-b2b6-643619257db9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "780accf3-0818-4e7d-8bba-048f13990611"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205618Z:1b36abd1-c88a-45d1-b2b6-643619257db9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:56:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "7ce1497d-6739-4ab1-9a98-72ed526f99c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8850e23-972c-48d3-840b-b3d7dd3bef87"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fccab45d-5ff2-4565-9ccf-ee0573c34ca9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205658Z:c8850e23-972c-48d3-840b-b3d7dd3bef87"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:56:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "b979b2ac-d2e0-4dce-b1c4-f8c735a4958f"
+ ],
+ "x-ms-correlation-request-id": [
+ "e86cd7f2-f3f8-42f3-8570-5e92da5aeba8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "42b3969e-09cf-4937-830b-3dae4b5abfd9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205738Z:e86cd7f2-f3f8-42f3-8570-5e92da5aeba8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:57:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "a9d56c37-95ff-4b4b-a170-03ddfddfeb67"
+ ],
+ "x-ms-correlation-request-id": [
+ "eee71f7b-5147-4d64-890b-58fa320b49cc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f5b77de2-9406-4ecf-bc1e-c6a449d4640c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T205918Z:eee71f7b-5147-4d64-890b-58fa320b49cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 20:59:17 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "eb2a4432-920c-4433-8f61-314852b5e920"
+ ],
+ "x-ms-correlation-request-id": [
+ "04ff1138-1d8c-42df-a67f-1dbef0db8ed0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d4eb033a-91a2-46bb-94bc-74795993198c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T210058Z:04ff1138-1d8c-42df-a67f-1dbef0db8ed0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:00:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "3d38fdd5-9120-4047-acd7-b724cd454855"
+ ],
+ "x-ms-correlation-request-id": [
+ "e904924b-0c6b-4807-a66c-2e38927ec1bb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ea39a76b-971f-4af1-b2dd-f7adaba783f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T210238Z:e904924b-0c6b-4807-a66c-2e38927ec1bb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:02:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "52276d9d-ef8d-4f7d-be24-0a9d8ad8c874"
+ ],
+ "x-ms-correlation-request-id": [
+ "a75d2ea2-3350-48b7-8e47-58587e7e64aa"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7c5cfe53-3870-4599-bd2f-ec1a110976e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T210419Z:a75d2ea2-3350-48b7-8e47-58587e7e64aa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:04:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "7ef89b3d-3eca-4564-949e-3b1a1798375a"
+ ],
+ "x-ms-correlation-request-id": [
+ "848ec22f-9182-44c9-b9f3-d1902b2e8d3d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3c5a5f96-1a9d-4ec8-af02-4c19f810e3eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T210559Z:848ec22f-9182-44c9-b9f3-d1902b2e8d3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:05:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "35101695-ab8a-40b9-b217-2f4bd252c765"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e3ba992-5601-4a94-8f57-e7bc52402c79"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7068469f-4365-4c29-9631-2f9fabc55dba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T210739Z:0e3ba992-5601-4a94-8f57-e7bc52402c79"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:07:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "10ddea09-b323-43d0-a887-7411e7e0f0a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca4e0611-3a8d-4994-a848-fcb9e65efedf"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5d723c1c-7d65-4082-98ba-f60cc71dc87d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T210919Z:ca4e0611-3a8d-4994-a848-fcb9e65efedf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:09:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "05687055-9658-47b3-a1aa-21f4f1352855"
+ ],
+ "x-ms-correlation-request-id": [
+ "8479ff03-416b-4038-933e-1bc3b79ee3cd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "15ffa63d-8906-4d9f-a0ad-f160267fe4ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211059Z:8479ff03-416b-4038-933e-1bc3b79ee3cd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:10:59 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "50af89b9-5d18-4554-b3fd-d137a2bfaa36"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a98b9844-7769-42a7-b8db-a8a60c9553e0"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1269e0a1-4517-4912-99c1-fecd62c721af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211059Z:e17bfe40-1469-4001-9440-a9180b9766b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:10:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "231a9a56-48e8-4707-ac88-6abbd18f11d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a6d039a9-4f72-4c15-9726-4ac0bcf2df06"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "49074c73-3b49-4ccd-825e-268acd8de6b2"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3bdd6a86-4a61-4509-a155-c20b5e6e6127"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211100Z:49074c73-3b49-4ccd-825e-268acd8de6b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:10:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "92d0b37f-c73c-442f-9f9a-4d2b2d53df66"
+ ],
+ "x-ms-correlation-request-id": [
+ "361daada-f4bd-48c2-abca-bf87731dc4b4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "aaf42c2d-218e-4e60-9164-fc7d29a757ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211110Z:361daada-f4bd-48c2-abca-bf87731dc4b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:11:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "3b98f70d-4251-439f-b362-db70d98aa1d0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a44581a4-440e-429c-ab99-f11878150396"
+ ],
+ "x-ms-arm-service-request-id": [
+ "313fddf6-8a4a-47ea-9849-9cfcda1fc3e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211120Z:a44581a4-440e-429c-ab99-f11878150396"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:11:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "34207a7d-0144-480c-9445-bdcfb360383a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0ac47d3-23fb-466b-b27d-f034b5dd86bc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "79c1528c-8945-47a1-8a9b-42d2897c9004"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211140Z:d0ac47d3-23fb-466b-b27d-f034b5dd86bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:11:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "c83a2006-8727-45bf-8b3e-89fc375da0e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "8eb5650e-4fc4-46d8-b2cc-f3888a9ea46d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1eadce99-d6fb-41eb-a88b-d3f7063fcd39"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211200Z:8eb5650e-4fc4-46d8-b2cc-f3888a9ea46d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:12:00 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "39ff5814-6c23-4ae0-9677-d6a5c70c7182"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca4ac29b-76b8-4aff-88a3-d41382d6ab27"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8c96ee6a-1672-479b-a1a4-f78fbbccf727"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211240Z:ca4ac29b-76b8-4aff-88a3-d41382d6ab27"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:12:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "9df3fef8-af44-478f-99e3-7e8694fa8774"
+ ],
+ "x-ms-correlation-request-id": [
+ "42fa6ff2-7552-40d6-91d2-fae92f1f8991"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d9a2d58b-4f9a-435f-b051-88d784809a82"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211320Z:42fa6ff2-7552-40d6-91d2-fae92f1f8991"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:13:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "a6067ad3-2ca6-4597-b417-50b0660e1230"
+ ],
+ "x-ms-correlation-request-id": [
+ "746b3cc2-8e64-4706-889f-8abfe03d9e07"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3b8d4594-f544-4fe0-8b72-96c5945b938c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211500Z:746b3cc2-8e64-4706-889f-8abfe03d9e07"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:15:00 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "367949d1-47a8-489e-a82f-8d1f3df69ba1"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2a0633e-214e-416b-a000-014922c7f434"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0013d0e4-e0fe-43b1-9bbd-52a4b0ed95b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211640Z:e2a0633e-214e-416b-a000-014922c7f434"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:16:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "18e56791-78f9-44bb-bf26-3b7a3b88f555"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf9befff-ca31-472a-8421-7b5699538e9d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ad7e4fca-7f10-4a10-83b9-f2570ddac8bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T211830Z:cf9befff-ca31-472a-8421-7b5699538e9d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:18:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2f4de8bd-f4d5-466c-9b48-36c9931a4026"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fc79f37-fce5-4ba5-9ccd-98107829218b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9ec2ba39-4c56-49f9-bb37-ddc864149da2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212010Z:0fc79f37-fce5-4ba5-9ccd-98107829218b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:09 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "a6d039a9-4f72-4c15-9726-4ac0bcf2df06"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "49074c73-3b49-4ccd-825e-268acd8de6b2"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3bdd6a86-4a61-4509-a155-c20b5e6e6127"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212010Z:77e652e9-ff93-4175-8911-cd5e20890eb0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6482f1a-0f59-4d88-9213-0dcb401a02b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfc7d787-0452-4158-8932-2d441cee31d5"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "36e79865-9b53-403e-8560-99778cb941b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212010Z:dfc7d787-0452-4158-8932-2d441cee31d5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRlM2ZiNDBjLTkyOGYtNGM1OS1hNGViLTFjNWY0ZDZkMzU5Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c200f770-78f3-44fc-97c9-a202e7885c0b"
+ ],
+ "x-ms-correlation-request-id": [
+ "096ab622-2eff-4e9d-8050-17f75d90729d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "43d16e8d-909d-493d-b399-e6428c5d9a1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212021Z:096ab622-2eff-4e9d-8050-17f75d90729d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:20 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRlM2ZiNDBjLTkyOGYtNGM1OS1hNGViLTFjNWY0ZDZkMzU5Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01"
+ ],
+ "x-ms-request-id": [
+ "4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfc7d787-0452-4158-8932-2d441cee31d5"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "36e79865-9b53-403e-8560-99778cb941b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212021Z:3b66e5f0-22c8-46e7-878b-b0f044ca1c7b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps2542?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67b49909-cd35-4c7a-8174-d06e604a3800"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "f46a176a-ac70-478f-90fd-12642a865280"
+ ],
+ "x-ms-correlation-request-id": [
+ "f46a176a-ac70-478f-90fd-12642a865280"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212021Z:f46a176a-ac70-478f-90fd-12642a865280"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "268164f2-5420-4cfa-b578-600242fd7b32"
+ ],
+ "x-ms-correlation-request-id": [
+ "268164f2-5420-4cfa-b578-600242fd7b32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212036Z:268164f2-5420-4cfa-b578-600242fd7b32"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "6de7454d-57d3-4403-8d5f-050319003046"
+ ],
+ "x-ms-correlation-request-id": [
+ "6de7454d-57d3-4403-8d5f-050319003046"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212051Z:6de7454d-57d3-4403-8d5f-050319003046"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:20:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "16cd7a87-9674-49ab-8f38-8f902aa3bbc3"
+ ],
+ "x-ms-correlation-request-id": [
+ "16cd7a87-9674-49ab-8f38-8f902aa3bbc3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212106Z:16cd7a87-9674-49ab-8f38-8f902aa3bbc3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:21:06 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "5d02b35b-26b3-46d4-b0b8-cecb34e8b215"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d02b35b-26b3-46d4-b0b8-cecb34e8b215"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212121Z:5d02b35b-26b3-46d4-b0b8-cecb34e8b215"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:21:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "960fb7fc-d599-4ba7-836b-fdbfa8fd6268"
+ ],
+ "x-ms-correlation-request-id": [
+ "960fb7fc-d599-4ba7-836b-fdbfa8fd6268"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212136Z:960fb7fc-d599-4ba7-836b-fdbfa8fd6268"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:21:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "bb7bad0a-8d52-4a9c-9e83-e131b91909f5"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb7bad0a-8d52-4a9c-9e83-e131b91909f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212152Z:bb7bad0a-8d52-4a9c-9e83-e131b91909f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:21:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28801.04",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "00c02e5d-a189-4084-aa0c-06ea30abf332"
+ ],
+ "x-ms-correlation-request-id": [
+ "00c02e5d-a189-4084-aa0c-06ea30abf332"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200819T212152Z:00c02e5d-a189-4084-aa0c-06ea30abf332"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2020 21:21:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-VpnGatewayPacketCapture": [
+ "ps2542",
+ "ps4930",
+ "ps7785",
+ "ps3158"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "79ea0716-8a0e-4e48-a348-e3952d79809e"
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterCRUDMinimalParameters.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterCRUDMinimalParameters.json
index b8c68568e101..d825d14b5ec3 100644
--- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterCRUDMinimalParameters.json
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterCRUDMinimalParameters.json
@@ -1,88 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "88f6a18b-cee9-48f8-b647-fd6390525b7d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "023c1ad9-f76b-4ced-94a5-50ec49d6042d"
- ],
- "x-ms-correlation-request-id": [
- "023c1ad9-f76b-4ced-94a5-50ec49d6042d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T115627Z:023c1ad9-f76b-4ced-94a5-50ec49d6042d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 11:56:26 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "65762"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePortsLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps9045?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzOTA0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourcegroups/ps9706?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlZ3JvdXBzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "abaa8a80-75ac-4f51-937f-f1e23ecf5e59"
+ "5796fd46-31d3-486d-8e4b-380670dc2667"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "36"
+ "35"
]
},
"ResponseHeaders": {
@@ -93,16 +33,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-request-id": [
- "4cf3bb8e-e332-4fb1-8ea8-857ccfe01bf9"
+ "01cd8c99-5dee-4a2d-a018-74a4922218c5"
],
"x-ms-correlation-request-id": [
- "4cf3bb8e-e332-4fb1-8ea8-857ccfe01bf9"
+ "01cd8c99-5dee-4a2d-a018-74a4922218c5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115628Z:4cf3bb8e-e332-4fb1-8ea8-857ccfe01bf9"
+ "WESTUS:20200805T060449Z:01cd8c99-5dee-4a2d-a018-74a4922218c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,10 +51,10 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:28 GMT"
+ "Wed, 05 Aug 2020 06:04:49 GMT"
],
"Content-Length": [
- "173"
+ "172"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045\",\r\n \"name\": \"ps9045\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706\",\r\n \"name\": \"ps9706\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjA0NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTc1ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5de9f21-2ffe-47c0-b4aa-a8d52b9da2b6"
+ "9e646e89-0ba8-44e9-8645-0fe341bb25b2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -156,13 +96,13 @@
"gateway"
],
"x-ms-request-id": [
- "afb27736-4d26-463a-8681-cb7e33a41ffb"
+ "ca3ca07d-a9d6-424d-9ebc-ebc6504edab1"
],
"x-ms-correlation-request-id": [
- "afb27736-4d26-463a-8681-cb7e33a41ffb"
+ "ca3ca07d-a9d6-424d-9ebc-ebc6504edab1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115629Z:afb27736-4d26-463a-8681-cb7e33a41ffb"
+ "WESTUS:20200805T060450Z:ca3ca07d-a9d6-424d-9ebc-ebc6504edab1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +111,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:28 GMT"
+ "Wed, 05 Aug 2020 06:04:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -180,23 +120,23 @@
"-1"
],
"Content-Length": [
- "150"
+ "218"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps2045' under resource group 'ps9045' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5754' under resource group 'ps9706' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjA0NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTc1ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -207,16 +147,16 @@
"no-cache"
],
"ETag": [
- "W/\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\""
+ "W/\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\""
],
"x-ms-request-id": [
- "47f84759-ac70-42a5-9dde-33b9a50fb551"
+ "7e7f4baa-7160-40fc-bbb4-3d1e70d460e7"
],
"x-ms-correlation-request-id": [
- "26214304-4efb-426d-8de2-919cd994b780"
+ "755bb239-e4ea-4d0a-b1ea-973d401aa2b0"
],
"x-ms-arm-service-request-id": [
- "47e6e8f0-b6b5-4757-8ecd-6231967828cc"
+ "42e9ea01-00b7-47ca-b545-475f3a4b342d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -229,16 +169,16 @@
"11997"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115635Z:26214304-4efb-426d-8de2-919cd994b780"
+ "WESTUS:20200805T060500Z:755bb239-e4ea-4d0a-b1ea-973d401aa2b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:34 GMT"
+ "Wed, 05 Aug 2020 06:04:59 GMT"
],
"Content-Length": [
- "1290"
+ "1301"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -247,26 +187,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps2045\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045\",\r\n \"etag\": \"W/\\\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a27ed105-1d7a-4de6-81ec-88f85c82daa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5754\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754\",\r\n \"etag\": \"W/\\\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d1884c0-0baf-4ac8-8ef7-24e9e0dfb597\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7855\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\",\r\n \"etag\": \"W/\\\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjA0NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTc1ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "294e0b25-74d0-4375-ae75-6872f6e6c0d3"
+ "39f26200-84a5-4dcb-ad1f-2b3f97292037"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -277,16 +217,16 @@
"no-cache"
],
"ETag": [
- "W/\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\""
+ "W/\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\""
],
"x-ms-request-id": [
- "9ffe5589-06be-4cf9-9c84-3fa27abac4a5"
+ "575a418a-523d-423d-93fc-f00ff2962e70"
],
"x-ms-correlation-request-id": [
- "c013702e-7f22-4a88-a185-3ee8e6c3ab4e"
+ "6fddcb8e-79e1-4e00-be23-1dbcfd453c3f"
],
"x-ms-arm-service-request-id": [
- "21ad8d1d-535a-41ce-b10e-31e783900803"
+ "517a1f5a-7ada-4eb3-9b24-cc84d78ff934"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -299,16 +239,16 @@
"11996"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115635Z:c013702e-7f22-4a88-a185-3ee8e6c3ab4e"
+ "WESTUS:20200805T060500Z:6fddcb8e-79e1-4e00-be23-1dbcfd453c3f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:34 GMT"
+ "Wed, 05 Aug 2020 06:04:59 GMT"
],
"Content-Length": [
- "1290"
+ "1301"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -317,26 +257,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps2045\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045\",\r\n \"etag\": \"W/\\\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a27ed105-1d7a-4de6-81ec-88f85c82daa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5754\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754\",\r\n \"etag\": \"W/\\\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d1884c0-0baf-4ac8-8ef7-24e9e0dfb597\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7855\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\",\r\n \"etag\": \"W/\\\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjA0NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTc1ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac4cb999-8971-4f13-8b2e-7fda72bbb386"
+ "ed0e6e9c-bb3b-4e7d-8393-eb4ef413b3f3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -347,16 +287,16 @@
"no-cache"
],
"ETag": [
- "W/\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\""
+ "W/\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\""
],
"x-ms-request-id": [
- "11c504a0-d4d1-4bad-b0cf-a281fc652056"
+ "b40196bb-b8b4-48c6-8f7a-a7d3ac14ddce"
],
"x-ms-correlation-request-id": [
- "48e22404-d2db-4b32-94e0-f647c787926b"
+ "b59cf82f-835b-43d6-aa4a-0c406d8c99f6"
],
"x-ms-arm-service-request-id": [
- "9c4de2e2-c96a-4289-9615-82111516ac6b"
+ "a10d340c-ca38-4bfa-bbf2-d163fb324624"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,19 +306,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115635Z:48e22404-d2db-4b32-94e0-f647c787926b"
+ "WESTUS:20200805T060501Z:b59cf82f-835b-43d6-aa4a-0c406d8c99f6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:34 GMT"
+ "Wed, 05 Aug 2020 06:05:01 GMT"
],
"Content-Length": [
- "1290"
+ "1301"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -387,32 +327,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps2045\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045\",\r\n \"etag\": \"W/\\\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a27ed105-1d7a-4de6-81ec-88f85c82daa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"54a97b42-4da3-4dbc-9b52-89ae2319cbc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5754\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754\",\r\n \"etag\": \"W/\\\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d1884c0-0baf-4ac8-8ef7-24e9e0dfb597\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7855\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\",\r\n \"etag\": \"W/\\\"10ba9f99-6fc3-45c9-867f-027d3f65c7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjA0NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTc1ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"southcentralus\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"ps7855\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7bb62336-d929-4612-a0b3-5e51876f6711"
+ "03f0d77f-f0da-42eb-8937-4652cbe6414f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "634"
+ "684"
]
},
"ResponseHeaders": {
@@ -426,38 +366,41 @@
"3"
],
"x-ms-request-id": [
- "22bb552e-9162-4a6a-a06f-c575c31b45d6"
+ "548d2dd0-6ebf-48d3-89d9-f93f4d5fa70f"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/22bb552e-9162-4a6a-a06f-c575c31b45d6?api-version=2019-11-01"
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/548d2dd0-6ebf-48d3-89d9-f93f4d5fa70f?api-version=2020-05-01"
],
"x-ms-correlation-request-id": [
- "b4674c9c-2137-4263-aa58-3baeba272138"
+ "371bdd22-5748-4ec9-b35c-5665964d836b"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "ba9db43f-0b16-40ca-ad29-370b55f2e922"
+ "597fec49-1b37-4f36-bcd9-4b0336eeb731"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115631Z:b4674c9c-2137-4263-aa58-3baeba272138"
+ "WESTUS:20200805T060456Z:371bdd22-5748-4ec9-b35c-5665964d836b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:30 GMT"
+ "Wed, 05 Aug 2020 06:04:56 GMT"
],
"Content-Length": [
- "1288"
+ "1299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -466,20 +409,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps2045\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045\",\r\n \"etag\": \"W/\\\"70ede291-24b0-4e9a-90ba-07d4fb41e9f3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a27ed105-1d7a-4de6-81ec-88f85c82daa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"70ede291-24b0-4e9a-90ba-07d4fb41e9f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5754\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754\",\r\n \"etag\": \"W/\\\"d1cc3b34-a13b-4d17-9a74-c9138500f624\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0d1884c0-0baf-4ac8-8ef7-24e9e0dfb597\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7855\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\",\r\n \"etag\": \"W/\\\"d1cc3b34-a13b-4d17-9a74-c9138500f624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/22bb552e-9162-4a6a-a06f-c575c31b45d6?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8yMmJiNTUyZS05MTYyLTRhNmEtYTA2Zi1jNTc1YzMxYjQ1ZDY/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/548d2dd0-6ebf-48d3-89d9-f93f4d5fa70f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU0OGQyZGQwLTZlYmYtNDhkMy04OWQ5LWY5M2Y0ZDVmYTcwZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -490,13 +433,13 @@
"no-cache"
],
"x-ms-request-id": [
- "bd796ff0-7bce-495a-903d-02890f6847d5"
+ "4476e946-58cb-4c7b-bea8-a0cb63a30127"
],
"x-ms-correlation-request-id": [
- "474fcb5c-cdd0-45b5-bb8a-61da4b3b4ed5"
+ "b4d56c1d-9979-4cab-8cb3-6ed27c1891fb"
],
"x-ms-arm-service-request-id": [
- "f6754446-6c1a-409f-9d3a-33406fddcf0c"
+ "14783ae3-d080-43e5-901e-9515ea806955"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -509,13 +452,13 @@
"11998"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115634Z:474fcb5c-cdd0-45b5-bb8a-61da4b3b4ed5"
+ "WESTUS:20200805T060500Z:b4d56c1d-9979-4cab-8cb3-6ed27c1891fb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:34 GMT"
+ "Wed, 05 Aug 2020 06:04:59 GMT"
],
"Content-Length": [
"29"
@@ -531,22 +474,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNDU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea65a6a9-d806-4773-a0b7-9039b52d2449"
+ "ad71a1d8-751a-40c2-b6ae-0889202b3f7d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -560,13 +503,13 @@
"gateway"
],
"x-ms-request-id": [
- "fa9d6749-76b7-420e-ad94-911803ef4f51"
+ "3ac6b7f4-5dd5-4381-81d5-0c3a1cc7c765"
],
"x-ms-correlation-request-id": [
- "fa9d6749-76b7-420e-ad94-911803ef4f51"
+ "3ac6b7f4-5dd5-4381-81d5-0c3a1cc7c765"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115635Z:fa9d6749-76b7-420e-ad94-911803ef4f51"
+ "WESTUS:20200805T060501Z:3ac6b7f4-5dd5-4381-81d5-0c3a1cc7c765"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -575,7 +518,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:34 GMT"
+ "Wed, 05 Aug 2020 06:05:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -584,23 +527,23 @@
"-1"
],
"Content-Length": [
- "151"
+ "214"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps145' under resource group 'ps9045' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps6370' under resource group 'ps9706' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNDU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -610,17 +553,14 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"7b08b06a-46a5-4106-a808-8f447444f226\""
- ],
"x-ms-request-id": [
- "1a4273b7-df01-4965-9bbd-9abfdf89f6bb"
+ "addac1d9-7134-4c6e-99da-8ad03155f12b"
],
"x-ms-correlation-request-id": [
- "9e51610a-ec54-48fd-99ef-70aab1b73e71"
+ "461777ea-199f-4c37-bf97-f7a1c6d8d66d"
],
"x-ms-arm-service-request-id": [
- "6bd24033-cfd3-4435-9654-588213a0377a"
+ "3850ae57-7d3c-4fb3-a533-f4a89fa2acdb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -630,19 +570,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115638Z:9e51610a-ec54-48fd-99ef-70aab1b73e71"
+ "WESTUS:20200805T060504Z:461777ea-199f-4c37-bf97-f7a1c6d8d66d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:38 GMT"
+ "Wed, 05 Aug 2020 06:05:04 GMT"
],
"Content-Length": [
- "722"
+ "548"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -651,26 +591,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps145\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\",\r\n \"etag\": \"W/\\\"7b08b06a-46a5-4106-a808-8f447444f226\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e19b099f-7e35-47cb-9dbe-abaf60a7ab51\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1232\",\r\n \"fqdn\": \"ps1232.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6370\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370\",\r\n \"etag\": \"W/\\\"aeeaf705-1907-4c71-b4b6-b1d2be4a94fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNDU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81051b30-68b4-49b0-a4de-1a3e3fcd76fd"
+ "30305b0e-60d6-402f-9be7-d3bae5603649"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -680,17 +620,14 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "W/\"7b08b06a-46a5-4106-a808-8f447444f226\""
- ],
"x-ms-request-id": [
- "0faa1d25-ff2f-4e17-891c-dd6a489ee090"
+ "4d296632-0b43-452b-92ec-bab2f8c77277"
],
"x-ms-correlation-request-id": [
- "7ebbf7c2-165e-49f6-9d14-fcf1a40e3226"
+ "4ac508d9-8a11-470d-9596-376439f86a4b"
],
"x-ms-arm-service-request-id": [
- "6b99249e-306b-4f88-995c-d7543def7298"
+ "8ca51c5d-6500-4e13-825d-ccd75b3310cc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -700,19 +637,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11984"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115638Z:7ebbf7c2-165e-49f6-9d14-fcf1a40e3226"
+ "WESTUS:20200805T061948Z:4ac508d9-8a11-470d-9596-376439f86a4b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:38 GMT"
+ "Wed, 05 Aug 2020 06:19:48 GMT"
],
"Content-Length": [
- "722"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -721,32 +658,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps145\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\",\r\n \"etag\": \"W/\\\"7b08b06a-46a5-4106-a808-8f447444f226\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e19b099f-7e35-47cb-9dbe-abaf60a7ab51\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1232\",\r\n \"fqdn\": \"ps1232.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps6370\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNDU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1232\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"southcentralus\"\r\n}",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9e97acd-39e5-4853-8d90-7e0d003737eb"
+ "c4a7468d-2e57-43cb-86be-556b43389c9a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "204"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -756,20 +687,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "1"
- ],
"x-ms-request-id": [
- "8602ab71-907a-4969-8632-0507e6cf81bb"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/8602ab71-907a-4969-8632-0507e6cf81bb?api-version=2019-11-01"
+ "a33d2825-9103-4426-8780-c8251431c9c0"
],
"x-ms-correlation-request-id": [
- "e12f0626-77be-41c9-a189-c6c6a2f3e7a3"
+ "9cbea252-46a0-4b81-8c8d-48b9fbf88389"
],
"x-ms-arm-service-request-id": [
- "83e0915c-a3d4-4594-b6ba-6ab638765841"
+ "aa490fd6-7886-40e0-a8ac-aabbcb53cc32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -778,20 +703,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115637Z:e12f0626-77be-41c9-a189-c6c6a2f3e7a3"
+ "WESTUS:20200805T061948Z:9cbea252-46a0-4b81-8c8d-48b9fbf88389"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:36 GMT"
+ "Wed, 05 Aug 2020 06:19:48 GMT"
],
"Content-Length": [
- "721"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -800,20 +725,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps145\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\",\r\n \"etag\": \"W/\\\"a429c660-87fd-436e-9504-889c3a01f223\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e19b099f-7e35-47cb-9dbe-abaf60a7ab51\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1232\",\r\n \"fqdn\": \"ps1232.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}",
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"name\": \"ps6370\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/8602ab71-907a-4969-8632-0507e6cf81bb?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy84NjAyYWI3MS05MDdhLTQ5NjktODYzMi0wNTA3ZTZjZjgxYmI/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "32ac8ee5-7c6e-49c1-8f50-dc68f141218a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "176"
]
},
"ResponseHeaders": {
@@ -824,13 +761,19 @@
"no-cache"
],
"x-ms-request-id": [
- "906215ed-bb05-436c-a217-6ba46f80e518"
+ "36d00867-7f91-499f-8f71-621681908ad5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/36d00867-7f91-499f-8f71-621681908ad5?api-version=2020-05-01"
],
"x-ms-correlation-request-id": [
- "6093d286-f2ac-46ef-bc33-4b12140fcc3e"
+ "e95e81e8-b44f-4127-9b81-3b15f4de201b"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "73537abf-ce13-408a-86d6-eaf1c89f4997"
+ "390eac21-353d-4bf8-8e8a-9615ab686323"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -839,20 +782,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115638Z:6093d286-f2ac-46ef-bc33-4b12140fcc3e"
+ "WESTUS:20200805T060504Z:e95e81e8-b44f-4127-9b81-3b15f4de201b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:37 GMT"
+ "Wed, 05 Aug 2020 06:05:03 GMT"
],
"Content-Length": [
- "29"
+ "548"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -861,26 +804,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"name\": \"ps6370\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370\",\r\n \"etag\": \"W/\\\"aeeaf705-1907-4c71-b4b6-b1d2be4a94fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczkzOTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df9c87a4-9007-4042-8c77-7926ec4a336c"
+ "6b3c187c-58f2-4b61-bf2a-f9908e7a06e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "207"
]
},
"ResponseHeaders": {
@@ -890,51 +839,64 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "10"
],
"x-ms-request-id": [
- "4d0a2ee6-d5cb-45ed-9b4e-990a9b76ad19"
+ "4e98a0f3-2e6c-4223-ad29-f24a5cf69212"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01"
],
"x-ms-correlation-request-id": [
- "4d0a2ee6-d5cb-45ed-9b4e-990a9b76ad19"
+ "eac0c192-2783-4998-b00f-375fafd6f503"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T115639Z:4d0a2ee6-d5cb-45ed-9b4e-990a9b76ad19"
+ "x-ms-arm-service-request-id": [
+ "bea3a347-62fe-4316-9ee3-7da3bdeeaee5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200805T060505Z:eac0c192-2783-4998-b00f-375fafd6f503"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:38 GMT"
+ "Wed, 05 Aug 2020 06:05:04 GMT"
+ ],
+ "Content-Length": [
+ "592"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "157"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps9395' under resource group 'ps9045' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bc378e6e-837c-4d5c-8926-5bb4f0a1fdf8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\"\r\n }\r\n }\r\n}",
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczkzOTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -944,14 +906,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "4ab7bf26-d93f-4d32-acc7-9791c1da4855"
+ "b246fc1c-46c8-431f-8659-2d05aa287a36"
],
"x-ms-correlation-request-id": [
- "04756355-fcff-4086-9f49-91c47ecc09ca"
+ "46ac6bb6-f3c9-4df3-8881-27bffbd5038f"
],
"x-ms-arm-service-request-id": [
- "f905aad5-c3c7-4031-ae51-8f8d1f61a8a6"
+ "13a0dd17-a90c-4c40-b272-0827ecb2af39"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -961,19 +926,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11865"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120638Z:04756355-fcff-4086-9f49-91c47ecc09ca"
+ "WESTUS:20200805T060515Z:46ac6bb6-f3c9-4df3-8881-27bffbd5038f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:06:37 GMT"
+ "Wed, 05 Aug 2020 06:05:14 GMT"
],
"Content-Length": [
- "1711"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -982,26 +947,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps9395\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\",\r\n \"etag\": \"W/\\\"13b66cc5-2891-4574-b696-a6b8c7952b89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce8a99cc-5078-4581-813e-2c42b6fc3bfe\",\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3933\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395/ipConfigurations/ps3933\",\r\n \"etag\": \"W/\\\"13b66cc5-2891-4574-b696-a6b8c7952b89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnGatewayGeneration\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczkzOTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "80d9c639-0bd5-48c2-a44d-7281f7d66e4d"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1011,14 +970,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "20"
+ ],
"x-ms-request-id": [
- "74f4bce9-4658-485c-89bf-04432a08addf"
+ "886958ca-0b72-403b-8662-c972a9cb3d81"
],
"x-ms-correlation-request-id": [
- "b8c73d32-ec05-4785-88e5-ffd064e32655"
+ "d5779899-c2c0-453f-9959-62e2936b81a8"
],
"x-ms-arm-service-request-id": [
- "55b11e07-51a7-4095-b211-47329de94c7a"
+ "c2f00d4c-bd52-46f1-b187-4468f26650a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1028,19 +990,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11864"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120638Z:b8c73d32-ec05-4785-88e5-ffd064e32655"
+ "WESTUS:20200805T060525Z:d5779899-c2c0-453f-9959-62e2936b81a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:06:37 GMT"
+ "Wed, 05 Aug 2020 06:05:24 GMT"
],
"Content-Length": [
- "1711"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1049,26 +1011,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps9395\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\",\r\n \"etag\": \"W/\\\"13b66cc5-2891-4574-b696-a6b8c7952b89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce8a99cc-5078-4581-813e-2c42b6fc3bfe\",\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3933\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395/ipConfigurations/ps3933\",\r\n \"etag\": \"W/\\\"13b66cc5-2891-4574-b696-a6b8c7952b89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnGatewayGeneration\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczkzOTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "3dfdc3ca-c167-451e-937f-1ecaf6218153"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1078,14 +1034,17 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "40"
+ ],
"x-ms-request-id": [
- "e7f87a03-1f16-48d5-8920-d5f8274e926f"
+ "57a5844b-56d7-4613-8877-80e039df4cdc"
],
"x-ms-correlation-request-id": [
- "c3cfad31-81a9-4fc5-aa85-996c4b62776f"
+ "aa53f859-eeeb-4e87-abaf-b59b2317cad8"
],
"x-ms-arm-service-request-id": [
- "7711f139-9f85-4b1f-ad99-d56773f49359"
+ "66eed234-c4a0-465e-90a8-2dfb6f796ac8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1095,19 +1054,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120638Z:c3cfad31-81a9-4fc5-aa85-996c4b62776f"
+ "WESTUS:20200805T060545Z:aa53f859-eeeb-4e87-abaf-b59b2317cad8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:06:38 GMT"
+ "Wed, 05 Aug 2020 06:05:45 GMT"
],
"Content-Length": [
- "1711"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1116,32 +1075,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps9395\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\",\r\n \"etag\": \"W/\\\"13b66cc5-2891-4574-b696-a6b8c7952b89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce8a99cc-5078-4581-813e-2c42b6fc3bfe\",\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3933\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395/ipConfigurations/ps3933\",\r\n \"etag\": \"W/\\\"13b66cc5-2891-4574-b696-a6b8c7952b89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnGatewayGeneration\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczkzOTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\"\r\n }\r\n },\r\n \"name\": \"ps3933\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps3933\"\r\n }\r\n ],\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"vpnGatewayGeneration\": \"None\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "b43585a3-471b-4ef7-8076-5f59c395a035"
- ],
- "Accept-Language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "1101"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1152,19 +1099,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "060c5890-2196-4e1f-9a02-d6c5bd04dca9"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01"
+ "66caddf0-bb08-4bbe-9e58-6a96170fc25e"
],
"x-ms-correlation-request-id": [
- "c33a3ae6-c096-4593-873b-560d3e765861"
+ "de35ed4b-939f-457e-ac6b-6da64a477a9f"
],
"x-ms-arm-service-request-id": [
- "4f6ada57-f818-441d-9877-6cf3ee2f5a93"
+ "8fb0fef2-0c52-4069-b540-dc4980bda754"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1173,20 +1117,20 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115641Z:c33a3ae6-c096-4593-873b-560d3e765861"
+ "WESTUS:20200805T060625Z:de35ed4b-939f-457e-ac6b-6da64a477a9f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:41 GMT"
+ "Wed, 05 Aug 2020 06:06:25 GMT"
],
"Content-Length": [
- "1947"
+ "30"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1195,20 +1139,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps9395\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\",\r\n \"etag\": \"W/\\\"ccdfe7e3-5ec0-4274-b66e-91ddac82b588\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ce8a99cc-5078-4581-813e-2c42b6fc3bfe\",\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3933\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395/ipConfigurations/ps3933\",\r\n \"etag\": \"W/\\\"ccdfe7e3-5ec0-4274-b66e-91ddac82b588\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/publicIPAddresses/ps145\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworks/ps2045/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"vpnGatewayGeneration\": \"None\"\r\n }\r\n}",
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1219,16 +1163,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "6cc1dba6-14e4-4409-9a45-ddc26884fec5"
+ "876b0319-7b76-4b73-8bca-5c9955cd68fa"
],
"x-ms-correlation-request-id": [
- "027c70fd-5806-474c-9286-2cd538dbbc2e"
+ "54589138-460a-4854-9145-d68192bccfe6"
],
"x-ms-arm-service-request-id": [
- "9e8df589-2af8-4e7d-b99d-35fc9f0d7f66"
+ "012e6577-6a80-4dfa-ab79-2fca526313be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1238,16 +1182,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115651Z:027c70fd-5806-474c-9286-2cd538dbbc2e"
+ "WESTUS:20200805T060805Z:54589138-460a-4854-9145-d68192bccfe6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:56:51 GMT"
+ "Wed, 05 Aug 2020 06:08:05 GMT"
],
"Content-Length": [
"30"
@@ -1263,16 +1207,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1283,16 +1227,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "4212df84-62d0-4427-b974-1b06db8af170"
+ "cea45f89-8760-4761-99f1-6fdfc7973628"
],
"x-ms-correlation-request-id": [
- "16d22142-83cf-4fba-bbc9-b2c43b953f30"
+ "9f0c0b20-4064-4feb-94fe-055f50d9e6ac"
],
"x-ms-arm-service-request-id": [
- "5de5dc94-95b0-43dc-a43d-32ec16698457"
+ "2630f20e-4494-4151-8b67-7fa5f82fa0cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1302,16 +1246,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115701Z:16d22142-83cf-4fba-bbc9-b2c43b953f30"
+ "WESTUS:20200805T060946Z:9f0c0b20-4064-4feb-94fe-055f50d9e6ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:57:01 GMT"
+ "Wed, 05 Aug 2020 06:09:45 GMT"
],
"Content-Length": [
"30"
@@ -1327,16 +1271,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1347,16 +1291,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "780c4a18-bafa-46e8-9ffa-e7a243fcdfa6"
+ "926cc0ab-bff6-4767-a9b4-114b8dc21b4e"
],
"x-ms-correlation-request-id": [
- "18f32e71-0a25-450d-b7be-e75983d03412"
+ "7a42c418-7d7e-4d41-a1a4-3f1a06665073"
],
"x-ms-arm-service-request-id": [
- "13e90d39-822f-4ea6-93f6-d3b76ab2053d"
+ "86e93ddd-ff1d-4212-a939-4f8bf1d56f22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1366,16 +1310,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
+ "11991"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115712Z:18f32e71-0a25-450d-b7be-e75983d03412"
+ "WESTUS:20200805T061126Z:7a42c418-7d7e-4d41-a1a4-3f1a06665073"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:57:11 GMT"
+ "Wed, 05 Aug 2020 06:11:25 GMT"
],
"Content-Length": [
"30"
@@ -1391,16 +1335,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1411,16 +1355,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "b7d6c111-18cc-4684-be77-417fdf75d899"
+ "6d057252-dc15-4d33-a95a-cdf1cf1e6200"
],
"x-ms-correlation-request-id": [
- "1bef9717-04a7-4f4b-8540-73ea12919587"
+ "2f854630-d269-464b-9bf7-c8cd705d8366"
],
"x-ms-arm-service-request-id": [
- "a76c551a-51ae-4a58-8ed7-6327279db716"
+ "303738e0-770c-4611-b73a-1bf3b0615e94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1430,16 +1374,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115722Z:1bef9717-04a7-4f4b-8540-73ea12919587"
+ "WESTUS:20200805T061306Z:2f854630-d269-464b-9bf7-c8cd705d8366"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:57:21 GMT"
+ "Wed, 05 Aug 2020 06:13:06 GMT"
],
"Content-Length": [
"30"
@@ -1455,16 +1399,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1475,16 +1419,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "4a1b5883-2a70-47d3-a2a3-590fedd1164c"
+ "715f32d2-9044-411f-bc3f-603309623f5a"
],
"x-ms-correlation-request-id": [
- "af1cc8c4-6222-43a5-954a-0f1d39488e23"
+ "8f8a0f7c-6c50-4fb2-926a-b27dd174cfab"
],
"x-ms-arm-service-request-id": [
- "21eed947-a4cb-4ffe-b081-a3791c468284"
+ "8d7408d0-92b1-48ed-a5eb-23e7d490fd9f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1494,16 +1438,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115732Z:af1cc8c4-6222-43a5-954a-0f1d39488e23"
+ "WESTUS:20200805T061446Z:8f8a0f7c-6c50-4fb2-926a-b27dd174cfab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:57:31 GMT"
+ "Wed, 05 Aug 2020 06:14:46 GMT"
],
"Content-Length": [
"30"
@@ -1519,16 +1463,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1539,35 +1483,35 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "2bca6ca7-ad80-4a7c-a133-0f7b9df6f461"
+ "19c0fe02-78e2-4f6d-82a7-9a76614d35ff"
],
"x-ms-correlation-request-id": [
- "fcbacc20-b337-4d63-94d2-707fb9c72442"
+ "6ad06f5f-a54f-4856-8998-a580d3a23ba2"
],
"x-ms-arm-service-request-id": [
- "d3f989ef-d039-494a-b001-9f37a4bb2158"
+ "f0f1a0ed-efbd-45cb-a03e-fb6c9a30182e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115742Z:fcbacc20-b337-4d63-94d2-707fb9c72442"
+ "WESTUS:20200805T061627Z:6ad06f5f-a54f-4856-8998-a580d3a23ba2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:57:42 GMT"
+ "Wed, 05 Aug 2020 06:16:26 GMT"
],
"Content-Length": [
"30"
@@ -1583,16 +1527,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1603,16 +1547,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "0b0e7745-c20e-4ec1-a27b-cd55f8e7249c"
+ "187ba058-f236-4b68-b0a2-c840b98c1924"
],
"x-ms-correlation-request-id": [
- "4c7f2a74-6768-4541-8394-aafbd1cb0960"
+ "3a0d4543-30ed-456d-8d60-10d1f57612d2"
],
"x-ms-arm-service-request-id": [
- "bfcb748a-f881-4294-b921-4db67cc45637"
+ "8cf9acb1-e832-49df-a559-db252043cdf7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1622,16 +1566,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
+ "11987"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115752Z:4c7f2a74-6768-4541-8394-aafbd1cb0960"
+ "WESTUS:20200805T061807Z:3a0d4543-30ed-456d-8d60-10d1f57612d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:57:52 GMT"
+ "Wed, 05 Aug 2020 06:18:07 GMT"
],
"Content-Length": [
"30"
@@ -1647,16 +1591,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/4e98a0f3-2e6c-4223-ad29-f24a5cf69212?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlOThhMGYzLTJlNmMtNDIyMy1hZDI5LWYyNGE1Y2Y2OTIxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1666,17 +1610,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "3e89784b-9b16-4182-931f-5ba6da7679e5"
+ "37c3faef-4f69-471c-86d0-31de56733920"
],
"x-ms-correlation-request-id": [
- "38038655-ce9d-449d-a081-aabb5de0d644"
+ "7c804e69-f656-46df-ac24-3f3060afff9b"
],
"x-ms-arm-service-request-id": [
- "a5c70ca9-0b41-4522-89eb-e9d58cb34358"
+ "1581bd82-5865-4d00-af4e-6d9f078d9b32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1686,19 +1627,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
+ "11986"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115802Z:38038655-ce9d-449d-a081-aabb5de0d644"
+ "WESTUS:20200805T061947Z:7c804e69-f656-46df-ac24-3f3060afff9b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:58:02 GMT"
+ "Wed, 05 Aug 2020 06:19:47 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1707,20 +1648,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1730,17 +1671,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\""
],
"x-ms-request-id": [
- "298394ea-9831-42db-b4f5-5a29788f0aae"
+ "6c9ca211-168c-466a-ab15-b6955f093eff"
],
"x-ms-correlation-request-id": [
- "ed427bd5-4c23-45dd-b8a2-84cf866a450a"
+ "22f0c110-ee80-4ade-9c8d-4f0e91464cd9"
],
"x-ms-arm-service-request-id": [
- "d213653b-ea78-4690-8357-265808f600c8"
+ "215f254c-08b4-42cf-9c61-710a0b39fb2f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1750,19 +1691,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
+ "11985"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115812Z:ed427bd5-4c23-45dd-b8a2-84cf866a450a"
+ "WESTUS:20200805T061948Z:22f0c110-ee80-4ade-9c8d-4f0e91464cd9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:58:12 GMT"
+ "Wed, 05 Aug 2020 06:19:47 GMT"
],
"Content-Length": [
- "30"
+ "593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1771,20 +1712,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5442756f-eb5b-4a03-99a5-b8057a6415a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1794,17 +1741,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\""
],
"x-ms-request-id": [
- "f9835db0-07bb-4966-b400-e52311f4f4aa"
+ "9e38d2f5-e940-4360-8adc-0f1546b927cd"
],
"x-ms-correlation-request-id": [
- "95ffe0e2-db7a-4d57-97ed-959640a0b294"
+ "30d83e86-3bec-4328-84f5-157c108d3a05"
],
"x-ms-arm-service-request-id": [
- "168666bd-2bc9-415b-a034-ee56d4028daa"
+ "03ca37db-c9ba-4c25-9b4a-3442284418e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1814,19 +1761,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
+ "11983"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115822Z:95ffe0e2-db7a-4d57-97ed-959640a0b294"
+ "WESTUS:20200805T061948Z:30d83e86-3bec-4328-84f5-157c108d3a05"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:58:22 GMT"
+ "Wed, 05 Aug 2020 06:19:48 GMT"
],
"Content-Length": [
- "30"
+ "593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1835,20 +1782,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f535cdb3-5d7e-4905-b591-46529c104689"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1858,17 +1811,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\""
],
"x-ms-request-id": [
- "c336201b-ce9d-4eec-9ecb-daa3ed82f8c9"
+ "7cb67ae8-a0db-441c-8bae-cfb4fd217d6b"
],
"x-ms-correlation-request-id": [
- "8d041894-e92d-4b35-a799-decf27d4b015"
+ "715eb61f-5965-40f9-9a87-b90b237fb15c"
],
"x-ms-arm-service-request-id": [
- "5ad724aa-0566-4482-a97f-268fd2db0ae3"
+ "e9e4eb10-de0e-4760-b658-87f02ddbd665"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1878,19 +1831,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
+ "11997"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115832Z:8d041894-e92d-4b35-a799-decf27d4b015"
+ "WESTUS:20200805T061949Z:715eb61f-5965-40f9-9a87-b90b237fb15c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:58:32 GMT"
+ "Wed, 05 Aug 2020 06:19:48 GMT"
],
"Content-Length": [
- "30"
+ "593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1899,20 +1852,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85869e25-cc75-4ce4-9444-3182ef17e8ca"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1922,39 +1881,39 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "ETag": [
+ "W/\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\""
],
"x-ms-request-id": [
- "0b14c61e-5ff0-4ef0-93ab-668cfad03754"
+ "04ea4683-8bf0-4024-b681-98b305cb1b8d"
],
"x-ms-correlation-request-id": [
- "b30b32a7-7413-478d-8c90-18feabe0015a"
+ "30c5d1f6-c047-4e07-836d-ee451ca152a6"
],
"x-ms-arm-service-request-id": [
- "bc13783f-2391-42ca-80f2-67d12185738b"
+ "343b59f8-cef5-4fb2-9e67-355336377514"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115842Z:b30b32a7-7413-478d-8c90-18feabe0015a"
+ "WESTUS:20200805T061949Z:30c5d1f6-c047-4e07-836d-ee451ca152a6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:58:42 GMT"
+ "Wed, 05 Aug 2020 06:19:49 GMT"
],
"Content-Length": [
- "30"
+ "593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1963,20 +1922,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualNetworks/ps5754/subnets/ps7855\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/bgpConnections?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2JncENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8918342-c5e1-45b1-9df5-923166e1a7c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -1986,17 +1951,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "1c6e41d5-2c3b-4743-9beb-69b4415aa6f1"
+ "e6cb06c2-5a23-484d-9fd1-3ceb3943d9d7"
],
"x-ms-correlation-request-id": [
- "eb652ca9-36be-4846-8586-3829c7d71c71"
+ "ef7b4707-21e0-4b9c-8bb3-ff63384558d6"
],
"x-ms-arm-service-request-id": [
- "94562eb6-a712-44a8-9f46-0c50d131aa07"
+ "c40c606a-874a-46d1-9fea-06c0ab1b0745"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2006,19 +1968,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115853Z:eb652ca9-36be-4846-8586-3829c7d71c71"
+ "WESTUS:20200805T061948Z:ef7b4707-21e0-4b9c-8bb3-ff63384558d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:58:52 GMT"
+ "Wed, 05 Aug 2020 06:19:48 GMT"
],
"Content-Length": [
- "30"
+ "19"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2027,20 +1989,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/bgpConnections?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2JncENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
+ "x-ms-client-request-id": [
+ "6c281c53-a42c-4dfa-b2aa-eb197d3e7eaa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2050,17 +2018,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "84fada72-218d-4c98-af9f-373fba8b3cd8"
+ "c8613682-a125-4ab8-b94b-9f1f90747428"
],
"x-ms-correlation-request-id": [
- "f858470b-927d-44b1-aa04-288c753632ac"
+ "89878a42-4e91-4803-ab55-9dc412f51d99"
],
"x-ms-arm-service-request-id": [
- "7699306b-4189-43a3-ae7d-b7dd7af47344"
+ "b3cdaaed-710e-42e9-b701-4a7472abe473"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2070,19 +2035,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
+ "11998"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115903Z:f858470b-927d-44b1-aa04-288c753632ac"
+ "WESTUS:20200805T061949Z:89878a42-4e91-4803-ab55-9dc412f51d99"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:59:02 GMT"
+ "Wed, 05 Aug 2020 06:19:49 GMT"
],
"Content-Length": [
- "30"
+ "19"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2091,20 +2056,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae7bcf29-38da-43ac-b7e7-36ec4fbea680"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2114,17 +2085,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "793356a7-d089-4c6d-835f-816a5408fc56"
+ "5d29ead9-5ff6-4222-9cca-6d1c677ae5f2"
],
"x-ms-correlation-request-id": [
- "a01a9462-1c4a-4359-adeb-cd6ade43753a"
+ "2a5ec9bc-5480-4773-bb0e-6501c097f533"
],
"x-ms-arm-service-request-id": [
- "b72b0292-246d-4b40-bb45-a62ceb2cdd1f"
+ "5b856b37-d308-46f2-afd1-f25f5737c0b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2134,19 +2102,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11909"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115913Z:a01a9462-1c4a-4359-adeb-cd6ade43753a"
+ "WESTUS:20200805T061949Z:2a5ec9bc-5480-4773-bb0e-6501c097f533"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:59:13 GMT"
+ "Wed, 05 Aug 2020 06:19:48 GMT"
],
"Content-Length": [
- "30"
+ "711"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2155,20 +2123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps6370\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370\",\r\n \"etag\": \"W/\\\"01ee84a0-10f9-4f29-96f3-2fb003b0a5e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ab42ecb-b168-4a11-bfb8-3cd45edb16de"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2178,17 +2152,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "b42e1d60-a66f-47b2-a23e-1e14024a4964"
+ "61e8b272-43dd-464d-b293-b59d7f4556a5"
],
"x-ms-correlation-request-id": [
- "7ecdb203-a9db-4bac-afe8-22df08b728e3"
+ "3c4078bc-8f27-4ec5-b683-fd31a5d48d40"
],
"x-ms-arm-service-request-id": [
- "884f55a3-d834-48c3-a17a-98187b52dcdc"
+ "09e2ef64-f55c-4023-8c6e-ee6e21919d27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2198,19 +2169,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
+ "11999"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115923Z:7ecdb203-a9db-4bac-afe8-22df08b728e3"
+ "WESTUS:20200805T062442Z:3c4078bc-8f27-4ec5-b683-fd31a5d48d40"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:59:23 GMT"
+ "Wed, 05 Aug 2020 06:24:42 GMT"
],
"Content-Length": [
- "30"
+ "19"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2219,20 +2190,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b4126e6-c3b8-40a0-b84f-463a857235a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2242,17 +2219,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "2204c527-0934-4d1b-b2f6-b736fed60487"
+ "2b91fd8e-4dd2-4463-a20f-5844bb5b5920"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01"
],
"x-ms-correlation-request-id": [
- "537b8f11-e6b0-4902-b61d-6f039fcc8118"
+ "0cad4c39-bb22-4ed5-8797-0b05f304461d"
],
"x-ms-arm-service-request-id": [
- "b1aea4ad-84f0-4ab3-8f64-c66080b68c11"
+ "c8f3c8a0-f3ff-4dfe-ac90-67723211c6a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2261,42 +2244,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11907"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115933Z:537b8f11-e6b0-4902-b61d-6f039fcc8118"
+ "WESTUS:20200805T061950Z:0cad4c39-bb22-4ed5-8797-0b05f304461d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:59:33 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 05 Aug 2020 06:19:49 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2310,32 +2290,32 @@
"10"
],
"x-ms-request-id": [
- "939564cd-780b-4c10-8d01-7588bc4c3174"
+ "51d58dac-a4dd-414d-a8b7-6c7a0b532225"
],
"x-ms-correlation-request-id": [
- "ef5dcfb3-5b54-4cf0-9a54-72df5d81fb36"
+ "89d4d56c-a9b3-4182-8d08-b60385eec02a"
],
"x-ms-arm-service-request-id": [
- "bcba66b1-b4e1-47b6-95fd-e23c670bc2ac"
+ "a7ee043a-4ba2-4503-969f-0bc7c0e22c7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115943Z:ef5dcfb3-5b54-4cf0-9a54-72df5d81fb36"
+ "WESTUS:20200805T062000Z:89d4d56c-a9b3-4182-8d08-b60385eec02a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:59:43 GMT"
+ "Wed, 05 Aug 2020 06:19:59 GMT"
],
"Content-Length": [
"30"
@@ -2351,16 +2331,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2371,16 +2351,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "20"
],
"x-ms-request-id": [
- "de22ac78-7344-42db-84fb-739c1b6e9935"
+ "28ba2e47-7cff-4108-a0b1-ec98361c246e"
],
"x-ms-correlation-request-id": [
- "0f51897d-bee7-495a-b9d6-c21d56fc79a1"
+ "1d3d7b2d-74f0-4dc5-9b0e-062a690a129e"
],
"x-ms-arm-service-request-id": [
- "21d570de-717d-4f52-aa5b-79bc913a3baa"
+ "ebfc30ac-ec69-473a-87e9-417551e88d52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2390,16 +2370,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
+ "11996"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T115954Z:0f51897d-bee7-495a-b9d6-c21d56fc79a1"
+ "WESTUS:20200805T062010Z:1d3d7b2d-74f0-4dc5-9b0e-062a690a129e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 11:59:53 GMT"
+ "Wed, 05 Aug 2020 06:20:10 GMT"
],
"Content-Length": [
"30"
@@ -2415,16 +2395,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2435,16 +2415,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "40"
],
"x-ms-request-id": [
- "ea759f98-53bf-4bbc-8b34-8c27eade3023"
+ "b99164bc-c9f5-44a1-b31a-70429ae7b65e"
],
"x-ms-correlation-request-id": [
- "18123b45-9c1b-4b83-9d17-34467733ecd3"
+ "e0c616b7-94e9-4f46-b31e-e12c7e048786"
],
"x-ms-arm-service-request-id": [
- "2e1e1a69-d9a1-4b5d-8ab0-5db01dbaa27b"
+ "f6759bea-4c73-4e28-9809-3f53f1cda2f3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2454,16 +2434,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
+ "11995"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120004Z:18123b45-9c1b-4b83-9d17-34467733ecd3"
+ "WESTUS:20200805T062030Z:e0c616b7-94e9-4f46-b31e-e12c7e048786"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:00:03 GMT"
+ "Wed, 05 Aug 2020 06:20:30 GMT"
],
"Content-Length": [
"30"
@@ -2479,16 +2459,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2499,16 +2479,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "bda38ebb-54b9-4467-b107-3278234e4aac"
+ "6027af5b-e09f-4b80-8f95-68b26d332283"
],
"x-ms-correlation-request-id": [
- "c1707811-2b36-4a84-bc38-6cdd2c4c0375"
+ "77f583ae-b80e-44cd-ae49-2508e6afd603"
],
"x-ms-arm-service-request-id": [
- "e6ee2d90-6773-4771-b35a-58a18a2db713"
+ "17cb9b9a-d48e-4a60-b6bb-2dce99aafdec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2518,16 +2498,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
+ "11994"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120014Z:c1707811-2b36-4a84-bc38-6cdd2c4c0375"
+ "WESTUS:20200805T062110Z:77f583ae-b80e-44cd-ae49-2508e6afd603"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:00:13 GMT"
+ "Wed, 05 Aug 2020 06:21:10 GMT"
],
"Content-Length": [
"30"
@@ -2543,16 +2523,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2563,16 +2543,16 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "100"
],
"x-ms-request-id": [
- "aa86cbe0-a931-41f0-b1d3-e4878a939f7d"
+ "3b25188e-47cb-4af5-a1a6-ae9cfe3cba2d"
],
"x-ms-correlation-request-id": [
- "f0be7d41-8e0d-4d6c-99b3-e3779dc07180"
+ "0cfe704b-8ecb-4b64-a21c-8b284b541c9f"
],
"x-ms-arm-service-request-id": [
- "5ad914f9-4e58-4518-8ea0-6b8ddcaf0082"
+ "4699e0e7-363a-40f0-963b-327239cac263"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2582,16 +2562,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11903"
+ "11993"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120024Z:f0be7d41-8e0d-4d6c-99b3-e3779dc07180"
+ "WESTUS:20200805T062251Z:0cfe704b-8ecb-4b64-a21c-8b284b541c9f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:00:23 GMT"
+ "Wed, 05 Aug 2020 06:22:51 GMT"
],
"Content-Length": [
"30"
@@ -2607,16 +2587,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2626,17 +2606,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "76f402d4-4ea2-4ce1-a132-8915bfc0be17"
+ "a07f0b9d-606a-4477-a191-25df9fb9df11"
],
"x-ms-correlation-request-id": [
- "7d4e1119-ebb4-4e70-a484-73cec2f05741"
+ "aafc014c-0de4-4bd1-a49d-4bbb4fcb6e66"
],
"x-ms-arm-service-request-id": [
- "7334028a-af31-428a-9b99-98d053909965"
+ "4c6c7850-09ba-4fe5-8abe-c5fd2f00cbfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2646,19 +2623,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
+ "11992"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120034Z:7d4e1119-ebb4-4e70-a484-73cec2f05741"
+ "WESTUS:20200805T062431Z:aafc014c-0de4-4bd1-a49d-4bbb4fcb6e66"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:00:34 GMT"
+ "Wed, 05 Aug 2020 06:24:30 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2667,20 +2644,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzJiOTFmZDhlLTRkZDItNDQ2My1hMjBmLTU4NDRiYjViNTkyMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2690,39 +2667,39 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01"
],
"x-ms-request-id": [
- "80b829b9-9793-4eaa-a43e-3fc95db64464"
+ "2b91fd8e-4dd2-4463-a20f-5844bb5b5920"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/2b91fd8e-4dd2-4463-a20f-5844bb5b5920?api-version=2020-05-01"
],
"x-ms-correlation-request-id": [
- "75a44047-9c1b-460e-89d8-f4fc30934314"
+ "0cad4c39-bb22-4ed5-8797-0b05f304461d"
],
"x-ms-arm-service-request-id": [
- "527e6ea1-a5bd-4c12-8a3e-42995aa779f1"
+ "c8f3c8a0-f3ff-4dfe-ac90-67723211c6a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11901"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120044Z:75a44047-9c1b-460e-89d8-f4fc30934314"
+ "WESTUS:20200805T062431Z:49035da4-54ec-4e6c-9983-d60f831640b7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:00:44 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 05 Aug 2020 06:24:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2731,20 +2708,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9706/providers/Microsoft.Network/virtualHubs/ps6370?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2MzcwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "822d988e-3a54-4255-aadf-98f3f5dd827c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2754,17 +2737,26 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/a53518e4-5ac6-4379-bfa5-6e000325a8db?api-version=2020-05-01"
+ ],
"Retry-After": [
"10"
],
"x-ms-request-id": [
- "70a3462e-6b0d-4dc5-97bd-81f823b95300"
+ "a53518e4-5ac6-4379-bfa5-6e000325a8db"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/a53518e4-5ac6-4379-bfa5-6e000325a8db?api-version=2020-05-01"
],
"x-ms-correlation-request-id": [
- "a4e1295a-5f7f-47c6-bc7c-db45b6cb1e8c"
+ "fb9a2017-ea2a-4aa6-880c-9accfc7976d8"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
],
"x-ms-arm-service-request-id": [
- "aa7a7a8e-5d25-455c-88c5-bae3c7ecc2ad"
+ "a8cc395a-a6b6-462a-83c1-6ad4a2e56a27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2773,42 +2765,39 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120054Z:a4e1295a-5f7f-47c6-bc7c-db45b6cb1e8c"
+ "WESTUS:20200805T062432Z:fb9a2017-ea2a-4aa6-880c-9accfc7976d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:00:54 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 05 Aug 2020 06:24:31 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/a53518e4-5ac6-4379-bfa5-6e000325a8db?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2E1MzUxOGU0LTVhYzYtNDM3OS1iZmE1LTZlMDAwMzI1YThkYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2818,17 +2807,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "83967b8f-776e-4006-b547-32941121c1b2"
+ "f0bd90b1-6d51-4cc3-8def-2ddd2d41bbc7"
],
"x-ms-correlation-request-id": [
- "b551f4a6-35f6-41dc-a9bc-91e931ac1e1c"
+ "69612959-5c19-4ca3-acf8-07d3461645fd"
],
"x-ms-arm-service-request-id": [
- "1b48c576-c99e-4d80-976d-bcc33bf35e45"
+ "0c994a32-98f0-41ed-8f45-e5e0e12bed82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2838,19 +2824,19 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11899"
+ "11990"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120104Z:b551f4a6-35f6-41dc-a9bc-91e931ac1e1c"
+ "WESTUS:20200805T062442Z:69612959-5c19-4ca3-acf8-07d3461645fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:01:04 GMT"
+ "Wed, 05 Aug 2020 06:24:41 GMT"
],
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2859,20 +2845,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/a53518e4-5ac6-4379-bfa5-6e000325a8db?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2E1MzUxOGU0LTVhYzYtNDM3OS1iZmE1LTZlMDAwMzI1YThkYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
]
},
"ResponseHeaders": {
@@ -2882,17 +2868,14 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "ddac7be2-69c8-4a9b-9115-6391e755b07a"
+ "a53518e4-5ac6-4379-bfa5-6e000325a8db"
],
"x-ms-correlation-request-id": [
- "a7bc7bdb-f3b6-4709-beb4-f71101a0bb28"
+ "fb9a2017-ea2a-4aa6-880c-9accfc7976d8"
],
"x-ms-arm-service-request-id": [
- "0cdf2b3e-d217-4c6f-a821-2d5266afd38c"
+ "a8cc395a-a6b6-462a-83c1-6ad4a2e56a27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2902,19 +2885,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11898"
+ "11989"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T120114Z:a7bc7bdb-f3b6-4709-beb4-f71101a0bb28"
+ "WESTUS:20200805T062442Z:e82be1fb-155c-49d0-a714-88cc0a8ac352"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:01:14 GMT"
- ],
- "Content-Length": [
- "30"
+ "Wed, 05 Aug 2020 06:24:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2923,20 +2903,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourcegroups/ps9706?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlZ3JvdXBzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6e69a94b-e693-4996-8034-810304ed0ac8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -2946,61 +2932,54 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
"Retry-After": [
- "10"
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "4740f712-9d3f-4655-9393-e07dbac6a773"
+ "ef2599b7-6a0b-44f6-abb3-a202ef571ee5"
],
"x-ms-correlation-request-id": [
- "aef34207-3574-40d0-b156-3ac2d05d7382"
+ "ef2599b7-6a0b-44f6-abb3-a202ef571ee5"
],
- "x-ms-arm-service-request-id": [
- "0bda4630-9661-42b8-b8a3-1233b953491f"
+ "x-ms-routing-request-id": [
+ "WESTUS:20200805T062444Z:ef2599b7-6a0b-44f6-abb3-a202ef571ee5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11897"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120125Z:aef34207-3574-40d0-b156-3ac2d05d7382"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:01:24 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 05 Aug 2020 06:24:44 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -3010,61 +2989,54 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
"Retry-After": [
- "10"
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
],
"x-ms-request-id": [
- "a90740e8-c35b-40a0-b0d4-d5c83658a84a"
+ "90a6f05b-360d-4163-9ded-f7c8b991d075"
],
"x-ms-correlation-request-id": [
- "b98a99d6-bb92-4360-b168-bcedb4a2b0a3"
+ "90a6f05b-360d-4163-9ded-f7c8b991d075"
],
- "x-ms-arm-service-request-id": [
- "5d3a03f8-676a-4e20-836d-2f03d1e53458"
+ "x-ms-routing-request-id": [
+ "WESTUS:20200805T062459Z:90a6f05b-360d-4163-9ded-f7c8b991d075"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11896"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120135Z:b98a99d6-bb92-4360-b168-bcedb4a2b0a3"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:01:34 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 05 Aug 2020 06:24:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -3074,61 +3046,54 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
"Retry-After": [
- "10"
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
],
"x-ms-request-id": [
- "17c6cf75-390a-4232-89ca-f6e880049211"
+ "e55d03da-6035-40eb-88b6-9d2369cedc8f"
],
"x-ms-correlation-request-id": [
- "e5794dc1-42b1-4b00-a526-d31660d690a2"
+ "e55d03da-6035-40eb-88b6-9d2369cedc8f"
],
- "x-ms-arm-service-request-id": [
- "45db93b3-9f15-478e-ac41-9add8cc38b50"
+ "x-ms-routing-request-id": [
+ "WESTUS:20200805T062514Z:e55d03da-6035-40eb-88b6-9d2369cedc8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11895"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120145Z:e5794dc1-42b1-4b00-a526-d31660d690a2"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:01:44 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 05 Aug 2020 06:25:14 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -3138,15973 +3103,32 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
"Retry-After": [
- "10"
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
],
"x-ms-request-id": [
- "37a2ac42-e135-44a6-ae05-09bff7118e14"
+ "17a60d90-3980-4789-aa39-eed48ae4de31"
],
"x-ms-correlation-request-id": [
- "cb3d346f-4f30-475a-a05f-02651e50951f"
+ "17a60d90-3980-4789-aa39-eed48ae4de31"
],
- "x-ms-arm-service-request-id": [
- "df8d28bf-a822-447e-9ccd-fc0f41437381"
+ "x-ms-routing-request-id": [
+ "WESTUS:20200805T062529Z:17a60d90-3980-4789-aa39-eed48ae4de31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11894"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120155Z:cb3d346f-4f30-475a-a05f-02651e50951f"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 12:01:55 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "e26228a8-e204-40d9-8ecd-4a1d9e1291d1"
- ],
- "x-ms-correlation-request-id": [
- "4c8b0cce-d991-429d-a2ff-295ed781b0b9"
- ],
- "x-ms-arm-service-request-id": [
- "f4f211d6-d61e-4844-8f81-f603f1d6a813"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11893"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120205Z:4c8b0cce-d991-429d-a2ff-295ed781b0b9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:02:05 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "6257c088-ebe7-480c-a13c-e6577fd28874"
- ],
- "x-ms-correlation-request-id": [
- "42c9b515-037f-42a0-b6b4-14f404d6bc26"
- ],
- "x-ms-arm-service-request-id": [
- "f8f9dbfd-66f4-4ef3-a1a4-c05b7b8111b5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11892"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120215Z:42c9b515-037f-42a0-b6b4-14f404d6bc26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:02:15 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "ab1b89f8-bad3-49a8-8359-e08779fbd893"
- ],
- "x-ms-correlation-request-id": [
- "4273cb99-eae5-4ed3-a5b0-520d08f9a934"
- ],
- "x-ms-arm-service-request-id": [
- "3041efb1-62be-4033-80bc-5d94e96ec8e4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11891"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120225Z:4273cb99-eae5-4ed3-a5b0-520d08f9a934"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:02:25 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "55b78b9f-65ef-41ff-9150-4f11183a81b6"
- ],
- "x-ms-correlation-request-id": [
- "3c289137-745e-4278-839b-83ffe51e0112"
- ],
- "x-ms-arm-service-request-id": [
- "fd78bf65-23c1-4e7a-9098-c6b1c58cea67"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11890"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120235Z:3c289137-745e-4278-839b-83ffe51e0112"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:02:35 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "4ae568af-7128-4bcb-adac-53b0753a0999"
- ],
- "x-ms-correlation-request-id": [
- "71cbe925-641c-469d-affd-30d94e9697f5"
- ],
- "x-ms-arm-service-request-id": [
- "a145f02a-7c3e-4efd-8aa6-735047a1334a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11889"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120245Z:71cbe925-641c-469d-affd-30d94e9697f5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:02:45 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "84d4051c-ff4e-4b77-9c75-68a2468f6f4f"
- ],
- "x-ms-correlation-request-id": [
- "1ab2e144-9086-4298-8368-fb7a1656f26d"
- ],
- "x-ms-arm-service-request-id": [
- "568a2a40-e97e-47e2-8a49-9357aa7fe95f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120256Z:1ab2e144-9086-4298-8368-fb7a1656f26d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:02:55 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "d3e7e507-3068-4ebe-b7f2-8be83edecef3"
- ],
- "x-ms-correlation-request-id": [
- "421b89e8-931b-4b46-899a-6fe5cb467f3c"
- ],
- "x-ms-arm-service-request-id": [
- "3c31b74c-e0b2-4767-a4a2-8b5c24c6e364"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11887"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120306Z:421b89e8-931b-4b46-899a-6fe5cb467f3c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:03:05 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "37384e42-83bb-41f0-a327-3e941c1e5154"
- ],
- "x-ms-correlation-request-id": [
- "250e6be8-2e19-43b4-9f47-5f7b140cae42"
- ],
- "x-ms-arm-service-request-id": [
- "15f0abdc-aa40-4936-bf74-61ab8fb852ae"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120316Z:250e6be8-2e19-43b4-9f47-5f7b140cae42"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:03:15 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "cc51773b-3902-48d8-8e32-fe55483a9fcf"
- ],
- "x-ms-correlation-request-id": [
- "2e1b6686-16e3-4a1b-b018-89e17d03418a"
- ],
- "x-ms-arm-service-request-id": [
- "d73c0ae6-5175-4f0e-b540-42f024513fc0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11885"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120326Z:2e1b6686-16e3-4a1b-b018-89e17d03418a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:03:25 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "ba474f40-e1d9-4c66-a2d1-4a10db6f4034"
- ],
- "x-ms-correlation-request-id": [
- "1ee2edf5-bbf7-40bc-a686-c0ba09b8a971"
- ],
- "x-ms-arm-service-request-id": [
- "34bdc7c0-6469-49b6-8c45-aacce3ab86ab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120336Z:1ee2edf5-bbf7-40bc-a686-c0ba09b8a971"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:03:35 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "2e664f15-6795-4c38-8b11-6267207a35da"
- ],
- "x-ms-correlation-request-id": [
- "282bbf5b-c6e0-4393-acad-7478ce330c74"
- ],
- "x-ms-arm-service-request-id": [
- "12ffe812-12e6-4253-aa3a-7fdb454a4461"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11883"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120346Z:282bbf5b-c6e0-4393-acad-7478ce330c74"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:03:45 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "608f7482-5e76-4ccf-a9ee-05107a92fa69"
- ],
- "x-ms-correlation-request-id": [
- "ceb8d4c0-4534-49f9-9d5f-af9fb66c4579"
- ],
- "x-ms-arm-service-request-id": [
- "f87b7d97-ec60-4e15-a97e-4cbd407573cb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120356Z:ceb8d4c0-4534-49f9-9d5f-af9fb66c4579"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:03:55 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "18274db5-a967-41ca-944f-147cdbe79e82"
- ],
- "x-ms-correlation-request-id": [
- "c8537257-ea44-4c95-ac7e-1f178cce6993"
- ],
- "x-ms-arm-service-request-id": [
- "4881c93c-afe5-4800-bb77-c093741d9820"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11881"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120406Z:c8537257-ea44-4c95-ac7e-1f178cce6993"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:04:06 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "219ddd62-9463-4f4c-95b9-88b81ee52bd9"
- ],
- "x-ms-correlation-request-id": [
- "5f1174d8-3e7f-4fa4-b8fa-473e30c06223"
- ],
- "x-ms-arm-service-request-id": [
- "cef3f166-5b6e-41e0-95de-5d5fb573d94f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120416Z:5f1174d8-3e7f-4fa4-b8fa-473e30c06223"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:04:16 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "672ca2a5-93d0-42c8-805c-dd4a74574823"
- ],
- "x-ms-correlation-request-id": [
- "b069756e-35d9-472d-ad30-0ce21f6a9466"
- ],
- "x-ms-arm-service-request-id": [
- "3e90445b-4c18-4137-858f-0f22f3acf9a6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11879"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120426Z:b069756e-35d9-472d-ad30-0ce21f6a9466"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:04:26 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "77e7ecf1-ea42-48cb-a57d-ae3c206be124"
- ],
- "x-ms-correlation-request-id": [
- "773b2d0b-491a-4df3-b91b-4258fd20f092"
- ],
- "x-ms-arm-service-request-id": [
- "b23fb11b-500a-4680-8cc1-49df24fbae8e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120436Z:773b2d0b-491a-4df3-b91b-4258fd20f092"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:04:36 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "4eafcaba-846e-4d99-bda1-bd3e4bf0b92c"
- ],
- "x-ms-correlation-request-id": [
- "0c477faa-3e22-472c-96b2-8eaad3120f6d"
- ],
- "x-ms-arm-service-request-id": [
- "e07d14a0-bd00-42f0-ac55-ea0c86ecf19b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11877"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120447Z:0c477faa-3e22-472c-96b2-8eaad3120f6d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:04:46 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "f6017426-6f09-4c0b-b14a-dcdceb134209"
- ],
- "x-ms-correlation-request-id": [
- "4f22e57b-1b7a-4870-954e-7af88b3be448"
- ],
- "x-ms-arm-service-request-id": [
- "d12caa06-7827-4591-8c26-79d44d02dcbc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120457Z:4f22e57b-1b7a-4870-954e-7af88b3be448"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:04:56 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "8814bba6-e601-4c9a-98e7-be98358b4d92"
- ],
- "x-ms-correlation-request-id": [
- "a3cc6288-fb41-41f9-a9a5-dfdcb35b0761"
- ],
- "x-ms-arm-service-request-id": [
- "5cb390f6-fbd2-4844-9697-94ae18323032"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11875"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120507Z:a3cc6288-fb41-41f9-a9a5-dfdcb35b0761"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:05:06 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "215486d5-e450-4332-8824-df4f08c1f473"
- ],
- "x-ms-correlation-request-id": [
- "f62f973c-46e3-458f-bf7d-b60eac43b268"
- ],
- "x-ms-arm-service-request-id": [
- "0937551c-541c-402e-9ea5-d7aed338ca8c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120517Z:f62f973c-46e3-458f-bf7d-b60eac43b268"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:05:16 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "acfe42ac-7652-4b7f-880d-f8d9a57c0b21"
- ],
- "x-ms-correlation-request-id": [
- "e0360891-6f49-4234-962e-2bb257c37439"
- ],
- "x-ms-arm-service-request-id": [
- "874c64cf-60ad-455f-b011-eaae0cb4a750"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11873"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120527Z:e0360891-6f49-4234-962e-2bb257c37439"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:05:26 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "bf15cdde-fd8d-4fd9-af23-fa863b20e37d"
- ],
- "x-ms-correlation-request-id": [
- "8546be78-6461-4d91-b210-23e8691a9add"
- ],
- "x-ms-arm-service-request-id": [
- "0a13ead7-63ef-4845-8bbd-98ce71d364dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120537Z:8546be78-6461-4d91-b210-23e8691a9add"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:05:36 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "53e44a74-9d38-43a2-9331-8e1e46f6d78e"
- ],
- "x-ms-correlation-request-id": [
- "752eb663-a782-47fb-bac1-8dba68fae343"
- ],
- "x-ms-arm-service-request-id": [
- "c0a0be24-a565-4515-ad27-daebc30b147d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11871"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120547Z:752eb663-a782-47fb-bac1-8dba68fae343"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:05:47 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "9f962e6c-3b62-4de9-9ce5-c82ca24861f6"
- ],
- "x-ms-correlation-request-id": [
- "15e9b9e6-efc5-420c-acaf-81617b00b24e"
- ],
- "x-ms-arm-service-request-id": [
- "e42b33ff-1f56-469c-a5c5-09e6898211a1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120557Z:15e9b9e6-efc5-420c-acaf-81617b00b24e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:05:57 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "4388eb3d-523c-4a09-b998-9951efde1b4d"
- ],
- "x-ms-correlation-request-id": [
- "0f1dca63-b238-469c-8f17-881c9bab1266"
- ],
- "x-ms-arm-service-request-id": [
- "cfe2124c-b78b-4ab5-b0f0-8ef89dc224c7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11869"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120607Z:0f1dca63-b238-469c-8f17-881c9bab1266"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:07 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "84a5a9c5-6c1c-4a47-91dc-2e32a7eeda7f"
- ],
- "x-ms-correlation-request-id": [
- "70fdecac-411a-4a87-9722-3c5848083dad"
- ],
- "x-ms-arm-service-request-id": [
- "317b0027-86a1-4081-9ab9-8ba5938b82dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120618Z:70fdecac-411a-4a87-9722-3c5848083dad"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:17 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "eafb3e80-022e-44b7-b37d-6d6beec7a163"
- ],
- "x-ms-correlation-request-id": [
- "e16b433b-06ed-4111-a778-4f9beb6f1236"
- ],
- "x-ms-arm-service-request-id": [
- "a98c2686-29b7-42a7-b200-7846d568c161"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11867"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120628Z:e16b433b-06ed-4111-a778-4f9beb6f1236"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:27 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/operations/060c5890-2196-4e1f-9a02-d6c5bd04dca9?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8wNjBjNTg5MC0yMTk2LTRlMWYtOWEwMi1kNmM1YmQwNGRjYTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "d990350d-f915-486f-9897-146dcb69c6b9"
- ],
- "x-ms-correlation-request-id": [
- "583e4ccd-a6f9-4f4c-8f64-571dee880d32"
- ],
- "x-ms-arm-service-request-id": [
- "b5c4e42f-75c3-4d02-b60f-a7a62b8edb0d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11866"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120638Z:583e4ccd-a6f9-4f4c-8f64-571dee880d32"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:37 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnMvcHM0OTMzP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f1b69b6f-29fa-4bd8-a878-9e835f64f4a1"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "8bded4a9-680b-438c-ad5f-e3849daab7d4"
- ],
- "x-ms-correlation-request-id": [
- "8bded4a9-680b-438c-ad5f-e3849daab7d4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120638Z:8bded4a9-680b-438c-ad5f-e3849daab7d4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:38 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "149"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualRouters/ps4933' under resource group 'ps9045' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnMvcHM0OTMzP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-request-id": [
- "55feb6ac-97bc-4c83-b65e-e98dcfda73b3"
- ],
- "x-ms-correlation-request-id": [
- "55feb6ac-97bc-4c83-b65e-e98dcfda73b3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120703Z:55feb6ac-97bc-4c83-b65e-e98dcfda73b3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:03 GMT"
- ],
- "Content-Length": [
- "660"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"hostedGateway\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\"\r\n },\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.12\",\r\n \"10.0.0.13\"\r\n ],\r\n \"peerings\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933\",\r\n \"name\": \"ps4933\",\r\n \"type\": \"Microsoft.Network/VirtualRouters\",\r\n \"etag\": \"f981fdfe-873c-46d7-8ec4-cafb271a5763\",\r\n \"location\": \"southcentralus\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnMvcHM0OTMzP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "748208ff-def3-40d9-b795-35781b16e5a0"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-request-id": [
- "cf598be8-197f-4258-a878-d9e75b48145a"
- ],
- "x-ms-correlation-request-id": [
- "cf598be8-197f-4258-a878-d9e75b48145a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120704Z:cf598be8-197f-4258-a878-d9e75b48145a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:03 GMT"
- ],
- "Content-Length": [
- "660"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"hostedGateway\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\"\r\n },\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.12\",\r\n \"10.0.0.13\"\r\n ],\r\n \"peerings\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933\",\r\n \"name\": \"ps4933\",\r\n \"type\": \"Microsoft.Network/VirtualRouters\",\r\n \"etag\": \"f981fdfe-873c-46d7-8ec4-cafb271a5763\",\r\n \"location\": \"southcentralus\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnMvcHM0OTMzP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "753dc97d-681e-4cfb-a143-24abaf9ad4af"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-request-id": [
- "001fec95-5b0e-4b85-99a1-8218c61b5b10"
- ],
- "x-ms-correlation-request-id": [
- "001fec95-5b0e-4b85-99a1-8218c61b5b10"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120704Z:001fec95-5b0e-4b85-99a1-8218c61b5b10"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:04 GMT"
- ],
- "Content-Length": [
- "660"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"hostedGateway\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\"\r\n },\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.12\",\r\n \"10.0.0.13\"\r\n ],\r\n \"peerings\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933\",\r\n \"name\": \"ps4933\",\r\n \"type\": \"Microsoft.Network/VirtualRouters\",\r\n \"etag\": \"f981fdfe-873c-46d7-8ec4-cafb271a5763\",\r\n \"location\": \"southcentralus\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnMvcHM0OTMzP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [],\r\n \"hostedGateway\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\"\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a3ef5ab0-56cd-4f6b-905e-7a0b03e445c2"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "300"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "1a47f99d-b120-46e0-8157-641b1fd90f59"
- ],
- "x-ms-correlation-request-id": [
- "29cded0b-8633-468a-a9f3-e9fae51954c4"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperations/1a47f99d-b120-46e0-8157-641b1fd90f59?api-version=2019-11-01"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120643Z:29cded0b-8633-468a-a9f3-e9fae51954c4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:43 GMT"
- ],
- "Content-Length": [
- "614"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"hostedGateway\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\"\r\n },\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [],\r\n \"peerings\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933\",\r\n \"name\": \"ps4933\",\r\n \"type\": \"Microsoft.Network/VirtualRouters\",\r\n \"etag\": \"f981fdfe-873c-46d7-8ec4-cafb271a5763\",\r\n \"location\": \"southcentralus\"\r\n}",
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperations/1a47f99d-b120-46e0-8157-641b1fd90f59?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbmZ2T3BlcmF0aW9ucy8xYTQ3Zjk5ZC1iMTIwLTQ2ZTAtODE1Ny02NDFiMWZkOTBmNTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "b156e4d7-4703-4dd0-b38a-d022615e13cc"
- ],
- "x-ms-correlation-request-id": [
- "159b524f-757d-4df3-980e-db8327e13ac9"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120653Z:159b524f-757d-4df3-980e-db8327e13ac9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:06:53 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperations/1a47f99d-b120-46e0-8157-641b1fd90f59?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbmZ2T3BlcmF0aW9ucy8xYTQ3Zjk5ZC1iMTIwLTQ2ZTAtODE1Ny02NDFiMWZkOTBmNTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "01d196ea-df73-41e2-8998-11cb5da51ac1"
- ],
- "x-ms-correlation-request-id": [
- "bc993a6c-8bc7-4c31-8230-f5437b7c7aaf"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120703Z:bc993a6c-8bc7-4c31-8230-f5437b7c7aaf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:03 GMT"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "29f15af2-72bd-41d7-b34e-3e3e6a6b2d43"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-request-id": [
- "4800a033-1a73-48a0-ae3a-040700ebfc89"
- ],
- "x-ms-correlation-request-id": [
- "4800a033-1a73-48a0-ae3a-040700ebfc89"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120705Z:4800a033-1a73-48a0-ae3a-040700ebfc89"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:04 GMT"
- ],
- "Content-Length": [
- "761"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostedGateway\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualNetworkGateways/ps9395\"\r\n },\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.12\",\r\n \"10.0.0.13\"\r\n ],\r\n \"peerings\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933\",\r\n \"name\": \"ps4933\",\r\n \"type\": \"Microsoft.Network/VirtualRouters\",\r\n \"etag\": \"f981fdfe-873c-46d7-8ec4-cafb271a5763\",\r\n \"location\": \"southcentralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps9045/providers/Microsoft.Network/virtualRouters/ps4933?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzOTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFJvdXRlcnMvcHM0OTMzP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9e92e577-ab7f-4674-86db-4294ff686b59"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperationResults/f2e7f25a-dca2-40bd-957a-26805f2cabca?api-version=2019-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "f2e7f25a-dca2-40bd-957a-26805f2cabca"
- ],
- "x-ms-correlation-request-id": [
- "613dedf0-76ee-4b07-9681-7090c8396280"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperations/f2e7f25a-dca2-40bd-957a-26805f2cabca?api-version=2019-11-01"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120705Z:613dedf0-76ee-4b07-9681-7090c8396280"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:05 GMT"
- ],
- "Content-Length": [
- "4"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "null",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperations/f2e7f25a-dca2-40bd-957a-26805f2cabca?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbmZ2T3BlcmF0aW9ucy9mMmU3ZjI1YS1kY2EyLTQwYmQtOTU3YS0yNjgwNWYyY2FiY2E/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "x-ms-request-id": [
- "e8fadfb6-5542-4737-83be-64e265c97de6"
- ],
- "x-ms-correlation-request-id": [
- "1a4ec5bf-03a9-451b-9a12-9dd6aee9f826"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120716Z:1a4ec5bf-03a9-451b-9a12-9dd6aee9f826"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:16 GMT"
- ],
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/southcentralus/nfvOperations/f2e7f25a-dca2-40bd-957a-26805f2cabca?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbmZ2T3BlcmF0aW9ucy9mMmU3ZjI1YS1kY2EyLTQwYmQtOTU3YS0yNjgwNWYyY2FiY2E/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "f4142523-fce1-47a4-9d71-7fe57f5ebcf0"
- ],
- "x-ms-correlation-request-id": [
- "16c352e6-d2a8-4c8a-a442-e52ff635be46"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120726Z:16c352e6-d2a8-4c8a-a442-e52ff635be46"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:26 GMT"
- ],
- "Content-Length": [
- "122"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"Internal Server Error\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps9045?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzOTA0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2474ee10-99ca-45b8-9f81-b2101856fde5"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
- ],
- "x-ms-request-id": [
- "c3d50b36-a445-4dfd-ab26-0a6d52dc66bb"
- ],
- "x-ms-correlation-request-id": [
- "c3d50b36-a445-4dfd-ab26-0a6d52dc66bb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120727Z:c3d50b36-a445-4dfd-ab26-0a6d52dc66bb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:27 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-request-id": [
- "caba0221-c4e7-4a44-8364-4517bffcd4f6"
- ],
- "x-ms-correlation-request-id": [
- "caba0221-c4e7-4a44-8364-4517bffcd4f6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120742Z:caba0221-c4e7-4a44-8364-4517bffcd4f6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
- ],
- "x-ms-request-id": [
- "98366a20-3b77-4afa-a29e-82f84a46cb90"
- ],
- "x-ms-correlation-request-id": [
- "98366a20-3b77-4afa-a29e-82f84a46cb90"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120757Z:98366a20-3b77-4afa-a29e-82f84a46cb90"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:07:56 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-request-id": [
- "a48e3dc4-fdf3-44a3-8b7a-4eac73770784"
- ],
- "x-ms-correlation-request-id": [
- "a48e3dc4-fdf3-44a3-8b7a-4eac73770784"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120812Z:a48e3dc4-fdf3-44a3-8b7a-4eac73770784"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:08:12 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
- "x-ms-request-id": [
- "df99df27-76e0-4be7-adda-1820c666ef92"
- ],
- "x-ms-correlation-request-id": [
- "df99df27-76e0-4be7-adda-1820c666ef92"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120828Z:df99df27-76e0-4be7-adda-1820c666ef92"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:08:27 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-request-id": [
- "dad029e6-3494-494e-ae14-5a3bed4dacab"
- ],
- "x-ms-correlation-request-id": [
- "dad029e6-3494-494e-ae14-5a3bed4dacab"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120843Z:dad029e6-3494-494e-ae14-5a3bed4dacab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:08:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
- ],
- "x-ms-request-id": [
- "2ec9628f-5dd9-4525-a410-98bea23da7d1"
- ],
- "x-ms-correlation-request-id": [
- "2ec9628f-5dd9-4525-a410-98bea23da7d1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120858Z:2ec9628f-5dd9-4525-a410-98bea23da7d1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:08:57 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-request-id": [
- "fb929c74-65c0-4794-8555-10cf69b6c946"
- ],
- "x-ms-correlation-request-id": [
- "fb929c74-65c0-4794-8555-10cf69b6c946"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120913Z:fb929c74-65c0-4794-8555-10cf69b6c946"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:09:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
- ],
- "x-ms-request-id": [
- "c6dc12ab-b2f7-465f-b65e-968294ed2a6f"
- ],
- "x-ms-correlation-request-id": [
- "c6dc12ab-b2f7-465f-b65e-968294ed2a6f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120928Z:c6dc12ab-b2f7-465f-b65e-968294ed2a6f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:09:28 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-request-id": [
- "fd53d5b7-cf25-4b5d-8195-a2c167cfac41"
- ],
- "x-ms-correlation-request-id": [
- "fd53d5b7-cf25-4b5d-8195-a2c167cfac41"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120943Z:fd53d5b7-cf25-4b5d-8195-a2c167cfac41"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:09:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-request-id": [
- "dfbb0e45-842d-4b73-8267-a78ca0da3ab7"
- ],
- "x-ms-correlation-request-id": [
- "dfbb0e45-842d-4b73-8267-a78ca0da3ab7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T120958Z:dfbb0e45-842d-4b73-8267-a78ca0da3ab7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:09:57 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-request-id": [
- "cabacc48-bcd0-4ba4-91c0-7c86f6df6bf7"
- ],
- "x-ms-correlation-request-id": [
- "cabacc48-bcd0-4ba4-91c0-7c86f6df6bf7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121013Z:cabacc48-bcd0-4ba4-91c0-7c86f6df6bf7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:10:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
- "x-ms-request-id": [
- "56608d29-045f-46ae-aed1-92a60e486e14"
- ],
- "x-ms-correlation-request-id": [
- "56608d29-045f-46ae-aed1-92a60e486e14"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121029Z:56608d29-045f-46ae-aed1-92a60e486e14"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:10:28 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-request-id": [
- "28171bed-117e-44d4-a74a-1055816db1f7"
- ],
- "x-ms-correlation-request-id": [
- "28171bed-117e-44d4-a74a-1055816db1f7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121044Z:28171bed-117e-44d4-a74a-1055816db1f7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:10:43 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
- "x-ms-request-id": [
- "8e56d364-654b-4a9b-9702-c76dbbcca73a"
- ],
- "x-ms-correlation-request-id": [
- "8e56d364-654b-4a9b-9702-c76dbbcca73a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121059Z:8e56d364-654b-4a9b-9702-c76dbbcca73a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:10:58 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-request-id": [
- "aa67fbcc-c818-42eb-aa86-c5eb2fff50fb"
- ],
- "x-ms-correlation-request-id": [
- "aa67fbcc-c818-42eb-aa86-c5eb2fff50fb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121114Z:aa67fbcc-c818-42eb-aa86-c5eb2fff50fb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:11:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-request-id": [
- "87f72a0e-354c-427b-bbf3-0eb20c88f7b8"
- ],
- "x-ms-correlation-request-id": [
- "87f72a0e-354c-427b-bbf3-0eb20c88f7b8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121129Z:87f72a0e-354c-427b-bbf3-0eb20c88f7b8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:11:28 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-request-id": [
- "0cc5c921-8c5c-4e2f-8bca-cca901e7f8b9"
- ],
- "x-ms-correlation-request-id": [
- "0cc5c921-8c5c-4e2f-8bca-cca901e7f8b9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121144Z:0cc5c921-8c5c-4e2f-8bca-cca901e7f8b9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:11:44 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-request-id": [
- "b15627e7-2cbe-4258-9c57-9f1a552ef392"
- ],
- "x-ms-correlation-request-id": [
- "b15627e7-2cbe-4258-9c57-9f1a552ef392"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121159Z:b15627e7-2cbe-4258-9c57-9f1a552ef392"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:11:59 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
- ],
- "x-ms-request-id": [
- "b4d1692c-3491-4e47-bdeb-0d210faf5f22"
- ],
- "x-ms-correlation-request-id": [
- "b4d1692c-3491-4e47-bdeb-0d210faf5f22"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121214Z:b4d1692c-3491-4e47-bdeb-0d210faf5f22"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:12:14 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-request-id": [
- "11d670e2-634a-4f17-8c39-3c697b6fac42"
- ],
- "x-ms-correlation-request-id": [
- "11d670e2-634a-4f17-8c39-3c697b6fac42"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121230Z:11d670e2-634a-4f17-8c39-3c697b6fac42"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:12:30 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-request-id": [
- "c8db82ac-cdf4-453c-bdec-fbe2747a36c4"
- ],
- "x-ms-correlation-request-id": [
- "c8db82ac-cdf4-453c-bdec-fbe2747a36c4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121245Z:c8db82ac-cdf4-453c-bdec-fbe2747a36c4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:12:44 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
- ],
- "x-ms-request-id": [
- "6d5468dc-b2d0-42ea-803f-a99c31672fe1"
- ],
- "x-ms-correlation-request-id": [
- "6d5468dc-b2d0-42ea-803f-a99c31672fe1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121300Z:6d5468dc-b2d0-42ea-803f-a99c31672fe1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:12:59 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-request-id": [
- "5284e841-fdbf-460a-b578-3258780aef06"
- ],
- "x-ms-correlation-request-id": [
- "5284e841-fdbf-460a-b578-3258780aef06"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121315Z:5284e841-fdbf-460a-b578-3258780aef06"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:13:14 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
- "x-ms-request-id": [
- "b7cc6e7a-b0c8-4347-9672-02297cf9e1da"
- ],
- "x-ms-correlation-request-id": [
- "b7cc6e7a-b0c8-4347-9672-02297cf9e1da"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121330Z:b7cc6e7a-b0c8-4347-9672-02297cf9e1da"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:13:29 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-request-id": [
- "c81c08a4-f0f4-454a-93e1-f6abeccf6a81"
- ],
- "x-ms-correlation-request-id": [
- "c81c08a4-f0f4-454a-93e1-f6abeccf6a81"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121345Z:c81c08a4-f0f4-454a-93e1-f6abeccf6a81"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:13:44 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
- ],
- "x-ms-request-id": [
- "d035ac43-c87c-432b-b53c-5b2649f4bf13"
- ],
- "x-ms-correlation-request-id": [
- "d035ac43-c87c-432b-b53c-5b2649f4bf13"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121400Z:d035ac43-c87c-432b-b53c-5b2649f4bf13"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:14:00 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
- ],
- "x-ms-request-id": [
- "0fb2c60d-04e9-4aaf-ad21-cd234f9bb137"
- ],
- "x-ms-correlation-request-id": [
- "0fb2c60d-04e9-4aaf-ad21-cd234f9bb137"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121415Z:0fb2c60d-04e9-4aaf-ad21-cd234f9bb137"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:14:15 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
- ],
- "x-ms-request-id": [
- "aa3efeef-4ef9-4031-96ca-c86f02bc4230"
- ],
- "x-ms-correlation-request-id": [
- "aa3efeef-4ef9-4031-96ca-c86f02bc4230"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121430Z:aa3efeef-4ef9-4031-96ca-c86f02bc4230"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:14:30 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
- ],
- "x-ms-request-id": [
- "bf1cac72-d86c-4f67-b2cf-8e825b99e112"
- ],
- "x-ms-correlation-request-id": [
- "bf1cac72-d86c-4f67-b2cf-8e825b99e112"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121446Z:bf1cac72-d86c-4f67-b2cf-8e825b99e112"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:14:45 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
- ],
- "x-ms-request-id": [
- "0259f684-369c-4855-985a-a10e06111d70"
- ],
- "x-ms-correlation-request-id": [
- "0259f684-369c-4855-985a-a10e06111d70"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121501Z:0259f684-369c-4855-985a-a10e06111d70"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:15:00 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
- ],
- "x-ms-request-id": [
- "dffdcea9-d00b-4663-954a-5861f99263d1"
- ],
- "x-ms-correlation-request-id": [
- "dffdcea9-d00b-4663-954a-5861f99263d1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121516Z:dffdcea9-d00b-4663-954a-5861f99263d1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:15:16 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
- ],
- "x-ms-request-id": [
- "2b5d3f39-b077-4b7f-9bd3-e157af519939"
- ],
- "x-ms-correlation-request-id": [
- "2b5d3f39-b077-4b7f-9bd3-e157af519939"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121531Z:2b5d3f39-b077-4b7f-9bd3-e157af519939"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:15:30 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
- ],
- "x-ms-request-id": [
- "05c6ca26-b36e-4491-b3b1-8be3b1fd52ee"
- ],
- "x-ms-correlation-request-id": [
- "05c6ca26-b36e-4491-b3b1-8be3b1fd52ee"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121546Z:05c6ca26-b36e-4491-b3b1-8be3b1fd52ee"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:15:45 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
- ],
- "x-ms-request-id": [
- "84a852f8-bfb4-4166-ad38-2d374b29991b"
- ],
- "x-ms-correlation-request-id": [
- "84a852f8-bfb4-4166-ad38-2d374b29991b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121601Z:84a852f8-bfb4-4166-ad38-2d374b29991b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:16:00 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
- ],
- "x-ms-request-id": [
- "601f1966-179d-4967-8ccc-579cab9ae016"
- ],
- "x-ms-correlation-request-id": [
- "601f1966-179d-4967-8ccc-579cab9ae016"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121616Z:601f1966-179d-4967-8ccc-579cab9ae016"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:16:16 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
- ],
- "x-ms-request-id": [
- "c1fa4c0a-fada-4638-9ef7-fe780219a338"
- ],
- "x-ms-correlation-request-id": [
- "c1fa4c0a-fada-4638-9ef7-fe780219a338"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121631Z:c1fa4c0a-fada-4638-9ef7-fe780219a338"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:16:31 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
- ],
- "x-ms-request-id": [
- "4ef7449c-5f15-4ad0-ad46-812e0b8031ec"
- ],
- "x-ms-correlation-request-id": [
- "4ef7449c-5f15-4ad0-ad46-812e0b8031ec"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121646Z:4ef7449c-5f15-4ad0-ad46-812e0b8031ec"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:16:46 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
- ],
- "x-ms-request-id": [
- "0b9abfd7-27de-455a-a562-3bd4287aba02"
- ],
- "x-ms-correlation-request-id": [
- "0b9abfd7-27de-455a-a562-3bd4287aba02"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121702Z:0b9abfd7-27de-455a-a562-3bd4287aba02"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:17:01 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
- ],
- "x-ms-request-id": [
- "21982aaa-e530-4926-bbb1-49868507fa11"
- ],
- "x-ms-correlation-request-id": [
- "21982aaa-e530-4926-bbb1-49868507fa11"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121717Z:21982aaa-e530-4926-bbb1-49868507fa11"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:17:16 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
- ],
- "x-ms-request-id": [
- "78dfa86a-65c7-4417-aad2-d20446c1cf9d"
- ],
- "x-ms-correlation-request-id": [
- "78dfa86a-65c7-4417-aad2-d20446c1cf9d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121732Z:78dfa86a-65c7-4417-aad2-d20446c1cf9d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:17:32 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
- ],
- "x-ms-request-id": [
- "0afd4dae-5347-4d47-9559-dae82b51531b"
- ],
- "x-ms-correlation-request-id": [
- "0afd4dae-5347-4d47-9559-dae82b51531b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121747Z:0afd4dae-5347-4d47-9559-dae82b51531b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:17:47 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
- ],
- "x-ms-request-id": [
- "d94066d6-2a23-4063-9bfe-41b0d4343ad8"
- ],
- "x-ms-correlation-request-id": [
- "d94066d6-2a23-4063-9bfe-41b0d4343ad8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121802Z:d94066d6-2a23-4063-9bfe-41b0d4343ad8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:18:01 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
- ],
- "x-ms-request-id": [
- "9645bfe7-56c8-431f-bb35-6dba3da7af34"
- ],
- "x-ms-correlation-request-id": [
- "9645bfe7-56c8-431f-bb35-6dba3da7af34"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121817Z:9645bfe7-56c8-431f-bb35-6dba3da7af34"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:18:16 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
- ],
- "x-ms-request-id": [
- "7cfccc69-f28b-41ce-86dd-dd039dc65887"
- ],
- "x-ms-correlation-request-id": [
- "7cfccc69-f28b-41ce-86dd-dd039dc65887"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121832Z:7cfccc69-f28b-41ce-86dd-dd039dc65887"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:18:32 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
- ],
- "x-ms-request-id": [
- "ae149b97-f745-43d5-88ef-bb5c57bd5aaa"
- ],
- "x-ms-correlation-request-id": [
- "ae149b97-f745-43d5-88ef-bb5c57bd5aaa"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121847Z:ae149b97-f745-43d5-88ef-bb5c57bd5aaa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:18:47 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
- ],
- "x-ms-request-id": [
- "d19f0e42-7c95-437a-a12b-901fd9a67d90"
- ],
- "x-ms-correlation-request-id": [
- "d19f0e42-7c95-437a-a12b-901fd9a67d90"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121903Z:d19f0e42-7c95-437a-a12b-901fd9a67d90"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:19:02 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
- ],
- "x-ms-request-id": [
- "9f16a2dd-1361-485a-ae86-64bdcceafba5"
- ],
- "x-ms-correlation-request-id": [
- "9f16a2dd-1361-485a-ae86-64bdcceafba5"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121918Z:9f16a2dd-1361-485a-ae86-64bdcceafba5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:19:17 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
- ],
- "x-ms-request-id": [
- "5db4e9f6-9066-426f-882a-33eb249eaae6"
- ],
- "x-ms-correlation-request-id": [
- "5db4e9f6-9066-426f-882a-33eb249eaae6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121933Z:5db4e9f6-9066-426f-882a-33eb249eaae6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:19:32 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
- ],
- "x-ms-request-id": [
- "19fdaae9-3071-47ba-a2b2-0de6f844910e"
- ],
- "x-ms-correlation-request-id": [
- "19fdaae9-3071-47ba-a2b2-0de6f844910e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T121948Z:19fdaae9-3071-47ba-a2b2-0de6f844910e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:19:48 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
- ],
- "x-ms-request-id": [
- "be0fd16c-f9e2-4e65-b88f-4251609b4b45"
- ],
- "x-ms-correlation-request-id": [
- "be0fd16c-f9e2-4e65-b88f-4251609b4b45"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122003Z:be0fd16c-f9e2-4e65-b88f-4251609b4b45"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:20:03 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
- ],
- "x-ms-request-id": [
- "d74433d8-e06c-445b-a997-bce3fc18e7a9"
- ],
- "x-ms-correlation-request-id": [
- "d74433d8-e06c-445b-a997-bce3fc18e7a9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122018Z:d74433d8-e06c-445b-a997-bce3fc18e7a9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:20:18 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
- ],
- "x-ms-request-id": [
- "1d846ce7-d330-4e9d-b611-58df40a039da"
- ],
- "x-ms-correlation-request-id": [
- "1d846ce7-d330-4e9d-b611-58df40a039da"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122033Z:1d846ce7-d330-4e9d-b611-58df40a039da"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:20:33 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
- ],
- "x-ms-request-id": [
- "15a5078e-cedf-4ffe-bba3-3fa2a5cfe584"
- ],
- "x-ms-correlation-request-id": [
- "15a5078e-cedf-4ffe-bba3-3fa2a5cfe584"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122049Z:15a5078e-cedf-4ffe-bba3-3fa2a5cfe584"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:20:48 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
- ],
- "x-ms-request-id": [
- "76eeb7bd-771f-40be-8c80-544b84a9f8f1"
- ],
- "x-ms-correlation-request-id": [
- "76eeb7bd-771f-40be-8c80-544b84a9f8f1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122104Z:76eeb7bd-771f-40be-8c80-544b84a9f8f1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:21:03 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
- ],
- "x-ms-request-id": [
- "7a49efc3-d747-4963-be6e-adec732ed5ab"
- ],
- "x-ms-correlation-request-id": [
- "7a49efc3-d747-4963-be6e-adec732ed5ab"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122119Z:7a49efc3-d747-4963-be6e-adec732ed5ab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:21:19 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
- ],
- "x-ms-request-id": [
- "0d665d1f-1bd4-41a9-9be2-13ac36bfd803"
- ],
- "x-ms-correlation-request-id": [
- "0d665d1f-1bd4-41a9-9be2-13ac36bfd803"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122134Z:0d665d1f-1bd4-41a9-9be2-13ac36bfd803"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:21:34 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
- ],
- "x-ms-request-id": [
- "143d1445-0386-467f-a456-43b616d81825"
- ],
- "x-ms-correlation-request-id": [
- "143d1445-0386-467f-a456-43b616d81825"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122149Z:143d1445-0386-467f-a456-43b616d81825"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:21:49 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
- ],
- "x-ms-request-id": [
- "a2e080c9-9114-42bf-9168-baeb4526c745"
- ],
- "x-ms-correlation-request-id": [
- "a2e080c9-9114-42bf-9168-baeb4526c745"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122204Z:a2e080c9-9114-42bf-9168-baeb4526c745"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:22:04 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
- ],
- "x-ms-request-id": [
- "c0d56f77-00e6-447a-a7d7-837fd2526c6b"
- ],
- "x-ms-correlation-request-id": [
- "c0d56f77-00e6-447a-a7d7-837fd2526c6b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122219Z:c0d56f77-00e6-447a-a7d7-837fd2526c6b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:22:19 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
- ],
- "x-ms-request-id": [
- "525f7b6d-0f46-46e1-9548-71733e3e82c9"
- ],
- "x-ms-correlation-request-id": [
- "525f7b6d-0f46-46e1-9548-71733e3e82c9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122234Z:525f7b6d-0f46-46e1-9548-71733e3e82c9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:22:34 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
- ],
- "x-ms-request-id": [
- "e05d36c7-dff3-4d98-a375-8de41c754143"
- ],
- "x-ms-correlation-request-id": [
- "e05d36c7-dff3-4d98-a375-8de41c754143"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122250Z:e05d36c7-dff3-4d98-a375-8de41c754143"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:22:49 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
- ],
- "x-ms-request-id": [
- "3f9ec60b-a723-426e-812c-c15feb1ad683"
- ],
- "x-ms-correlation-request-id": [
- "3f9ec60b-a723-426e-812c-c15feb1ad683"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122305Z:3f9ec60b-a723-426e-812c-c15feb1ad683"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:23:04 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
- ],
- "x-ms-request-id": [
- "c7f457ce-9e19-44ff-a610-78214e7f7619"
- ],
- "x-ms-correlation-request-id": [
- "c7f457ce-9e19-44ff-a610-78214e7f7619"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122320Z:c7f457ce-9e19-44ff-a610-78214e7f7619"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:23:19 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
- ],
- "x-ms-request-id": [
- "895f7c7d-58d1-4bbb-a180-394568b5d752"
- ],
- "x-ms-correlation-request-id": [
- "895f7c7d-58d1-4bbb-a180-394568b5d752"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122335Z:895f7c7d-58d1-4bbb-a180-394568b5d752"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:23:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
- ],
- "x-ms-request-id": [
- "d53de19f-9ba1-4f82-b243-79f454a63f3e"
- ],
- "x-ms-correlation-request-id": [
- "d53de19f-9ba1-4f82-b243-79f454a63f3e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122350Z:d53de19f-9ba1-4f82-b243-79f454a63f3e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:23:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
- ],
- "x-ms-request-id": [
- "dd530697-0a69-4682-8736-932d8d51af03"
- ],
- "x-ms-correlation-request-id": [
- "dd530697-0a69-4682-8736-932d8d51af03"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122405Z:dd530697-0a69-4682-8736-932d8d51af03"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:24:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
- ],
- "x-ms-request-id": [
- "759b3722-0539-44ba-aafa-8b329e7f8d0b"
- ],
- "x-ms-correlation-request-id": [
- "759b3722-0539-44ba-aafa-8b329e7f8d0b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122420Z:759b3722-0539-44ba-aafa-8b329e7f8d0b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:24:19 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
- ],
- "x-ms-request-id": [
- "1d817846-a594-47f8-b2e8-6ed2065bb282"
- ],
- "x-ms-correlation-request-id": [
- "1d817846-a594-47f8-b2e8-6ed2065bb282"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122435Z:1d817846-a594-47f8-b2e8-6ed2065bb282"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:24:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
- ],
- "x-ms-request-id": [
- "76776fb2-cc1e-4492-b1b6-0f39021bc88c"
- ],
- "x-ms-correlation-request-id": [
- "76776fb2-cc1e-4492-b1b6-0f39021bc88c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122450Z:76776fb2-cc1e-4492-b1b6-0f39021bc88c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:24:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
- ],
- "x-ms-request-id": [
- "34f90147-087c-43bc-87fb-29215aa44110"
- ],
- "x-ms-correlation-request-id": [
- "34f90147-087c-43bc-87fb-29215aa44110"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122505Z:34f90147-087c-43bc-87fb-29215aa44110"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:25:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
- ],
- "x-ms-request-id": [
- "142d3191-dcbe-4ea6-87d1-fb107fd30b17"
- ],
- "x-ms-correlation-request-id": [
- "142d3191-dcbe-4ea6-87d1-fb107fd30b17"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122520Z:142d3191-dcbe-4ea6-87d1-fb107fd30b17"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:25:20 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
- ],
- "x-ms-request-id": [
- "a1585ff9-5e1a-44ba-b4f7-60658c17ea79"
- ],
- "x-ms-correlation-request-id": [
- "a1585ff9-5e1a-44ba-b4f7-60658c17ea79"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122536Z:a1585ff9-5e1a-44ba-b4f7-60658c17ea79"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:25:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
- ],
- "x-ms-request-id": [
- "5553785b-c43c-4776-adf9-75f1b7390353"
- ],
- "x-ms-correlation-request-id": [
- "5553785b-c43c-4776-adf9-75f1b7390353"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122551Z:5553785b-c43c-4776-adf9-75f1b7390353"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:25:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
- ],
- "x-ms-request-id": [
- "390daa35-04a5-4cee-8831-2d94fffba299"
- ],
- "x-ms-correlation-request-id": [
- "390daa35-04a5-4cee-8831-2d94fffba299"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122606Z:390daa35-04a5-4cee-8831-2d94fffba299"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:26:06 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
- ],
- "x-ms-request-id": [
- "5f3b3a8f-ce87-404f-9c76-1474d9c10e36"
- ],
- "x-ms-correlation-request-id": [
- "5f3b3a8f-ce87-404f-9c76-1474d9c10e36"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122621Z:5f3b3a8f-ce87-404f-9c76-1474d9c10e36"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:26:21 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
- ],
- "x-ms-request-id": [
- "467cea94-079c-4f12-9e97-60f19f44dc8b"
- ],
- "x-ms-correlation-request-id": [
- "467cea94-079c-4f12-9e97-60f19f44dc8b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122636Z:467cea94-079c-4f12-9e97-60f19f44dc8b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:26:36 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
- ],
- "x-ms-request-id": [
- "cd8de5f5-387f-4c5c-9fde-c2f1a1a98054"
- ],
- "x-ms-correlation-request-id": [
- "cd8de5f5-387f-4c5c-9fde-c2f1a1a98054"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122651Z:cd8de5f5-387f-4c5c-9fde-c2f1a1a98054"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:26:51 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11909"
- ],
- "x-ms-request-id": [
- "a7c90809-3979-4292-9053-ed7864f76733"
- ],
- "x-ms-correlation-request-id": [
- "a7c90809-3979-4292-9053-ed7864f76733"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122706Z:a7c90809-3979-4292-9053-ed7864f76733"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:27:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
- ],
- "x-ms-request-id": [
- "7b745912-1855-457e-af77-3d50d1e6ddde"
- ],
- "x-ms-correlation-request-id": [
- "7b745912-1855-457e-af77-3d50d1e6ddde"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122721Z:7b745912-1855-457e-af77-3d50d1e6ddde"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:27:21 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11907"
- ],
- "x-ms-request-id": [
- "48655c70-4d33-4eaa-b58a-19d9c0976541"
- ],
- "x-ms-correlation-request-id": [
- "48655c70-4d33-4eaa-b58a-19d9c0976541"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122737Z:48655c70-4d33-4eaa-b58a-19d9c0976541"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:27:36 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
- ],
- "x-ms-request-id": [
- "7d0f21c4-ea2a-443c-b125-954cfc97691f"
- ],
- "x-ms-correlation-request-id": [
- "7d0f21c4-ea2a-443c-b125-954cfc97691f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122752Z:7d0f21c4-ea2a-443c-b125-954cfc97691f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:27:51 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
- ],
- "x-ms-request-id": [
- "2f7c3a56-1889-4cf2-b20c-76330294f14e"
- ],
- "x-ms-correlation-request-id": [
- "2f7c3a56-1889-4cf2-b20c-76330294f14e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122807Z:2f7c3a56-1889-4cf2-b20c-76330294f14e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:28:06 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
- ],
- "x-ms-request-id": [
- "35821c44-dab8-4362-989c-f5f23dfb661a"
- ],
- "x-ms-correlation-request-id": [
- "35821c44-dab8-4362-989c-f5f23dfb661a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122822Z:35821c44-dab8-4362-989c-f5f23dfb661a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:28:22 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11903"
- ],
- "x-ms-request-id": [
- "9d49017f-9b67-4687-a776-219717b05306"
- ],
- "x-ms-correlation-request-id": [
- "9d49017f-9b67-4687-a776-219717b05306"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122837Z:9d49017f-9b67-4687-a776-219717b05306"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:28:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
- ],
- "x-ms-request-id": [
- "e67ad0d2-c125-40c5-8961-4183d543b7a4"
- ],
- "x-ms-correlation-request-id": [
- "e67ad0d2-c125-40c5-8961-4183d543b7a4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122852Z:e67ad0d2-c125-40c5-8961-4183d543b7a4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:28:51 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11901"
- ],
- "x-ms-request-id": [
- "39b9906f-28ac-4184-aa9d-fdb228210186"
- ],
- "x-ms-correlation-request-id": [
- "39b9906f-28ac-4184-aa9d-fdb228210186"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122907Z:39b9906f-28ac-4184-aa9d-fdb228210186"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:29:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
- ],
- "x-ms-request-id": [
- "e9404705-516d-41ae-bc20-4f52525057b3"
- ],
- "x-ms-correlation-request-id": [
- "e9404705-516d-41ae-bc20-4f52525057b3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122922Z:e9404705-516d-41ae-bc20-4f52525057b3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:29:22 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11899"
- ],
- "x-ms-request-id": [
- "9c40712e-d7b7-4321-9707-bdbe022e9085"
- ],
- "x-ms-correlation-request-id": [
- "9c40712e-d7b7-4321-9707-bdbe022e9085"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122937Z:9c40712e-d7b7-4321-9707-bdbe022e9085"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:29:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11898"
- ],
- "x-ms-request-id": [
- "ae7bedb5-2fe0-46ad-926c-8cf3b51f42bd"
- ],
- "x-ms-correlation-request-id": [
- "ae7bedb5-2fe0-46ad-926c-8cf3b51f42bd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T122952Z:ae7bedb5-2fe0-46ad-926c-8cf3b51f42bd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:29:52 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11897"
- ],
- "x-ms-request-id": [
- "0130eca2-fb6d-43d6-8de3-d442d9c050c9"
- ],
- "x-ms-correlation-request-id": [
- "0130eca2-fb6d-43d6-8de3-d442d9c050c9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123008Z:0130eca2-fb6d-43d6-8de3-d442d9c050c9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:30:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11896"
- ],
- "x-ms-request-id": [
- "5c6f9ddf-1459-44a7-aedd-58117c5beee9"
- ],
- "x-ms-correlation-request-id": [
- "5c6f9ddf-1459-44a7-aedd-58117c5beee9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123023Z:5c6f9ddf-1459-44a7-aedd-58117c5beee9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:30:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11895"
- ],
- "x-ms-request-id": [
- "2f49fdc9-d672-4a0e-90ee-5079c7c7babf"
- ],
- "x-ms-correlation-request-id": [
- "2f49fdc9-d672-4a0e-90ee-5079c7c7babf"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123038Z:2f49fdc9-d672-4a0e-90ee-5079c7c7babf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:30:38 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11894"
- ],
- "x-ms-request-id": [
- "a8d7bfbf-111e-4032-a018-6027560b25d2"
- ],
- "x-ms-correlation-request-id": [
- "a8d7bfbf-111e-4032-a018-6027560b25d2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123053Z:a8d7bfbf-111e-4032-a018-6027560b25d2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:30:53 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11893"
- ],
- "x-ms-request-id": [
- "4b6c65bc-0cbf-4f64-bc26-03bb6131590e"
- ],
- "x-ms-correlation-request-id": [
- "4b6c65bc-0cbf-4f64-bc26-03bb6131590e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123108Z:4b6c65bc-0cbf-4f64-bc26-03bb6131590e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:31:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11892"
- ],
- "x-ms-request-id": [
- "7ceb261f-6fbe-46a5-ab53-1eb183d26f56"
- ],
- "x-ms-correlation-request-id": [
- "7ceb261f-6fbe-46a5-ab53-1eb183d26f56"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123123Z:7ceb261f-6fbe-46a5-ab53-1eb183d26f56"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:31:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11891"
- ],
- "x-ms-request-id": [
- "a6ebf862-4d71-488d-9d51-f1b622ae5acd"
- ],
- "x-ms-correlation-request-id": [
- "a6ebf862-4d71-488d-9d51-f1b622ae5acd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123138Z:a6ebf862-4d71-488d-9d51-f1b622ae5acd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:31:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11890"
- ],
- "x-ms-request-id": [
- "8ce0ba9b-aed4-455b-b794-a9e016fa4671"
- ],
- "x-ms-correlation-request-id": [
- "8ce0ba9b-aed4-455b-b794-a9e016fa4671"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123153Z:8ce0ba9b-aed4-455b-b794-a9e016fa4671"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:31:52 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11889"
- ],
- "x-ms-request-id": [
- "8f6347a4-c3c8-4889-97c7-34e4e5e28ade"
- ],
- "x-ms-correlation-request-id": [
- "8f6347a4-c3c8-4889-97c7-34e4e5e28ade"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123208Z:8f6347a4-c3c8-4889-97c7-34e4e5e28ade"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:32:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
- ],
- "x-ms-request-id": [
- "3dd7de62-9da0-47d1-8d3d-ae6553b35032"
- ],
- "x-ms-correlation-request-id": [
- "3dd7de62-9da0-47d1-8d3d-ae6553b35032"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123224Z:3dd7de62-9da0-47d1-8d3d-ae6553b35032"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:32:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11887"
- ],
- "x-ms-request-id": [
- "c0666ddd-8e77-4475-b876-6fa76a32038c"
- ],
- "x-ms-correlation-request-id": [
- "c0666ddd-8e77-4475-b876-6fa76a32038c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123239Z:c0666ddd-8e77-4475-b876-6fa76a32038c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:32:38 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
- ],
- "x-ms-request-id": [
- "c498f4bb-1f8b-4819-9274-f6ea346c3d1c"
- ],
- "x-ms-correlation-request-id": [
- "c498f4bb-1f8b-4819-9274-f6ea346c3d1c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123254Z:c498f4bb-1f8b-4819-9274-f6ea346c3d1c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:32:53 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11885"
- ],
- "x-ms-request-id": [
- "ab110c96-4a0f-477a-9c66-f5053b4e4ef5"
- ],
- "x-ms-correlation-request-id": [
- "ab110c96-4a0f-477a-9c66-f5053b4e4ef5"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123309Z:ab110c96-4a0f-477a-9c66-f5053b4e4ef5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:33:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
- ],
- "x-ms-request-id": [
- "9c97919d-ad89-4d18-88bf-cc670f6401e2"
- ],
- "x-ms-correlation-request-id": [
- "9c97919d-ad89-4d18-88bf-cc670f6401e2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123324Z:9c97919d-ad89-4d18-88bf-cc670f6401e2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:33:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11883"
- ],
- "x-ms-request-id": [
- "e2d00a19-583a-4384-a939-1a9eff5d5d2b"
- ],
- "x-ms-correlation-request-id": [
- "e2d00a19-583a-4384-a939-1a9eff5d5d2b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123339Z:e2d00a19-583a-4384-a939-1a9eff5d5d2b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:33:39 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
- ],
- "x-ms-request-id": [
- "c7f8127c-3368-43bc-9677-e77882ade673"
- ],
- "x-ms-correlation-request-id": [
- "c7f8127c-3368-43bc-9677-e77882ade673"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123354Z:c7f8127c-3368-43bc-9677-e77882ade673"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:33:54 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11881"
- ],
- "x-ms-request-id": [
- "bc089885-29e3-4aac-8bc8-55bcaebcc734"
- ],
- "x-ms-correlation-request-id": [
- "bc089885-29e3-4aac-8bc8-55bcaebcc734"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123409Z:bc089885-29e3-4aac-8bc8-55bcaebcc734"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:34:09 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
- ],
- "x-ms-request-id": [
- "75c73b19-bb21-4970-bda7-5695a7ecfe73"
- ],
- "x-ms-correlation-request-id": [
- "75c73b19-bb21-4970-bda7-5695a7ecfe73"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123425Z:75c73b19-bb21-4970-bda7-5695a7ecfe73"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:34:24 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11879"
- ],
- "x-ms-request-id": [
- "bcbcc721-2d59-43d6-89dd-8eb4feff064a"
- ],
- "x-ms-correlation-request-id": [
- "bcbcc721-2d59-43d6-89dd-8eb4feff064a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123440Z:bcbcc721-2d59-43d6-89dd-8eb4feff064a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:34:40 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
- ],
- "x-ms-request-id": [
- "8a3770db-4e80-4bc2-a045-d3bd671a19b4"
- ],
- "x-ms-correlation-request-id": [
- "8a3770db-4e80-4bc2-a045-d3bd671a19b4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123455Z:8a3770db-4e80-4bc2-a045-d3bd671a19b4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:34:54 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
- ],
- "x-ms-request-id": [
- "920588e6-dd0b-44ea-84e3-4102f780fa07"
- ],
- "x-ms-correlation-request-id": [
- "920588e6-dd0b-44ea-84e3-4102f780fa07"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123510Z:920588e6-dd0b-44ea-84e3-4102f780fa07"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:35:09 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11887"
- ],
- "x-ms-request-id": [
- "580c2df3-676a-4146-9e7d-29b824388884"
- ],
- "x-ms-correlation-request-id": [
- "580c2df3-676a-4146-9e7d-29b824388884"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123525Z:580c2df3-676a-4146-9e7d-29b824388884"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:35:24 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
- ],
- "x-ms-request-id": [
- "dd134cfe-2049-424b-bd41-06435d43b727"
- ],
- "x-ms-correlation-request-id": [
- "dd134cfe-2049-424b-bd41-06435d43b727"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123540Z:dd134cfe-2049-424b-bd41-06435d43b727"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:35:40 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11885"
- ],
- "x-ms-request-id": [
- "c56fa2f2-4087-463b-8004-dad21fe3fe76"
- ],
- "x-ms-correlation-request-id": [
- "c56fa2f2-4087-463b-8004-dad21fe3fe76"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123555Z:c56fa2f2-4087-463b-8004-dad21fe3fe76"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:35:55 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
- ],
- "x-ms-request-id": [
- "afb5a393-2a68-4c94-ae6f-e191def0a117"
- ],
- "x-ms-correlation-request-id": [
- "afb5a393-2a68-4c94-ae6f-e191def0a117"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123610Z:afb5a393-2a68-4c94-ae6f-e191def0a117"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:36:10 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11883"
- ],
- "x-ms-request-id": [
- "82289c1c-7c4a-4a01-8ce7-2244025b3e43"
- ],
- "x-ms-correlation-request-id": [
- "82289c1c-7c4a-4a01-8ce7-2244025b3e43"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123625Z:82289c1c-7c4a-4a01-8ce7-2244025b3e43"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:36:25 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
- ],
- "x-ms-request-id": [
- "c54d0471-4894-463b-9f79-e91b6bf4c2f0"
- ],
- "x-ms-correlation-request-id": [
- "c54d0471-4894-463b-9f79-e91b6bf4c2f0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123640Z:c54d0471-4894-463b-9f79-e91b6bf4c2f0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:36:40 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11881"
- ],
- "x-ms-request-id": [
- "f8d31f3b-fd06-4083-ac59-1012f5058137"
- ],
- "x-ms-correlation-request-id": [
- "f8d31f3b-fd06-4083-ac59-1012f5058137"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123656Z:f8d31f3b-fd06-4083-ac59-1012f5058137"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:36:55 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
- ],
- "x-ms-request-id": [
- "2797b402-2a61-4b02-a379-054a23014851"
- ],
- "x-ms-correlation-request-id": [
- "2797b402-2a61-4b02-a379-054a23014851"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123711Z:2797b402-2a61-4b02-a379-054a23014851"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:37:10 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11879"
- ],
- "x-ms-request-id": [
- "9341281c-fa78-48a7-b7ba-c99b8c302a68"
- ],
- "x-ms-correlation-request-id": [
- "9341281c-fa78-48a7-b7ba-c99b8c302a68"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123726Z:9341281c-fa78-48a7-b7ba-c99b8c302a68"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:37:25 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
- ],
- "x-ms-request-id": [
- "86ff5485-131b-42a4-bf84-a60fda6bba2b"
- ],
- "x-ms-correlation-request-id": [
- "86ff5485-131b-42a4-bf84-a60fda6bba2b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123741Z:86ff5485-131b-42a4-bf84-a60fda6bba2b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:37:40 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11877"
- ],
- "x-ms-request-id": [
- "5791499d-57ee-4d9b-8cdc-af8f34a99636"
- ],
- "x-ms-correlation-request-id": [
- "5791499d-57ee-4d9b-8cdc-af8f34a99636"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123756Z:5791499d-57ee-4d9b-8cdc-af8f34a99636"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:37:56 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
- ],
- "x-ms-request-id": [
- "6d70c8f9-f601-49d1-93ce-e7fbf4a1dd1b"
- ],
- "x-ms-correlation-request-id": [
- "6d70c8f9-f601-49d1-93ce-e7fbf4a1dd1b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123811Z:6d70c8f9-f601-49d1-93ce-e7fbf4a1dd1b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:38:11 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11875"
- ],
- "x-ms-request-id": [
- "a9dcfa7d-2602-4ac8-863c-d3d401fd3d9b"
- ],
- "x-ms-correlation-request-id": [
- "a9dcfa7d-2602-4ac8-863c-d3d401fd3d9b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123826Z:a9dcfa7d-2602-4ac8-863c-d3d401fd3d9b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:38:26 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
- ],
- "x-ms-request-id": [
- "df5fe5d5-5f0f-4a2d-aea3-bcf2164d415f"
- ],
- "x-ms-correlation-request-id": [
- "df5fe5d5-5f0f-4a2d-aea3-bcf2164d415f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123842Z:df5fe5d5-5f0f-4a2d-aea3-bcf2164d415f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:38:41 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11873"
- ],
- "x-ms-request-id": [
- "669bdaac-2dc4-416e-ae88-8924b067902f"
- ],
- "x-ms-correlation-request-id": [
- "669bdaac-2dc4-416e-ae88-8924b067902f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123857Z:669bdaac-2dc4-416e-ae88-8924b067902f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:38:57 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
- ],
- "x-ms-request-id": [
- "91db2b51-4d01-4c2a-8d3d-3079d5ec8815"
- ],
- "x-ms-correlation-request-id": [
- "91db2b51-4d01-4c2a-8d3d-3079d5ec8815"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123912Z:91db2b51-4d01-4c2a-8d3d-3079d5ec8815"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:39:11 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11871"
- ],
- "x-ms-request-id": [
- "9354797a-11c5-42ee-914d-dff532d39b54"
- ],
- "x-ms-correlation-request-id": [
- "9354797a-11c5-42ee-914d-dff532d39b54"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123927Z:9354797a-11c5-42ee-914d-dff532d39b54"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:39:26 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
- ],
- "x-ms-request-id": [
- "cc91530d-4725-40db-9cfd-3a35678a140d"
- ],
- "x-ms-correlation-request-id": [
- "cc91530d-4725-40db-9cfd-3a35678a140d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123942Z:cc91530d-4725-40db-9cfd-3a35678a140d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:39:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11869"
- ],
- "x-ms-request-id": [
- "4a94c27e-d39b-4384-9944-58906cd7614e"
- ],
- "x-ms-correlation-request-id": [
- "4a94c27e-d39b-4384-9944-58906cd7614e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T123957Z:4a94c27e-d39b-4384-9944-58906cd7614e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:39:57 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11869"
- ],
- "x-ms-request-id": [
- "eef330ef-773e-4932-b689-bc82e0540cb0"
- ],
- "x-ms-correlation-request-id": [
- "eef330ef-773e-4932-b689-bc82e0540cb0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124012Z:eef330ef-773e-4932-b689-bc82e0540cb0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:40:11 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
- ],
- "x-ms-request-id": [
- "366d3253-644d-482c-8764-df757e683feb"
- ],
- "x-ms-correlation-request-id": [
- "366d3253-644d-482c-8764-df757e683feb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124027Z:366d3253-644d-482c-8764-df757e683feb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:40:26 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11867"
- ],
- "x-ms-request-id": [
- "1b1524de-5c41-479f-8223-1e73a1f1eebd"
- ],
- "x-ms-correlation-request-id": [
- "1b1524de-5c41-479f-8223-1e73a1f1eebd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124042Z:1b1524de-5c41-479f-8223-1e73a1f1eebd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:40:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11866"
- ],
- "x-ms-request-id": [
- "af810a00-7b02-4b06-8f47-534b883a18bd"
- ],
- "x-ms-correlation-request-id": [
- "af810a00-7b02-4b06-8f47-534b883a18bd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124057Z:af810a00-7b02-4b06-8f47-534b883a18bd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:40:57 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11865"
- ],
- "x-ms-request-id": [
- "00510e6e-873d-4815-96d1-112c51f41e72"
- ],
- "x-ms-correlation-request-id": [
- "00510e6e-873d-4815-96d1-112c51f41e72"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124113Z:00510e6e-873d-4815-96d1-112c51f41e72"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:41:12 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11864"
- ],
- "x-ms-request-id": [
- "a3e0bb88-8cc1-4203-acc2-fb1d976fc742"
- ],
- "x-ms-correlation-request-id": [
- "a3e0bb88-8cc1-4203-acc2-fb1d976fc742"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124128Z:a3e0bb88-8cc1-4203-acc2-fb1d976fc742"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:41:27 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11863"
- ],
- "x-ms-request-id": [
- "a80fde5a-0ce3-452d-94d5-ee2a77827217"
- ],
- "x-ms-correlation-request-id": [
- "a80fde5a-0ce3-452d-94d5-ee2a77827217"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124143Z:a80fde5a-0ce3-452d-94d5-ee2a77827217"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:41:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11862"
- ],
- "x-ms-request-id": [
- "5328a452-8017-4737-a322-e04184ba5dc7"
- ],
- "x-ms-correlation-request-id": [
- "5328a452-8017-4737-a322-e04184ba5dc7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124158Z:5328a452-8017-4737-a322-e04184ba5dc7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:41:57 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11861"
- ],
- "x-ms-request-id": [
- "fde1c684-e78d-4872-b2c8-74807bb8ca12"
- ],
- "x-ms-correlation-request-id": [
- "fde1c684-e78d-4872-b2c8-74807bb8ca12"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124213Z:fde1c684-e78d-4872-b2c8-74807bb8ca12"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:42:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11860"
- ],
- "x-ms-request-id": [
- "bc47db49-340c-4eae-ada0-8f6f0417f095"
- ],
- "x-ms-correlation-request-id": [
- "bc47db49-340c-4eae-ada0-8f6f0417f095"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124228Z:bc47db49-340c-4eae-ada0-8f6f0417f095"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:42:28 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11859"
- ],
- "x-ms-request-id": [
- "1958a4db-5f03-40a9-9d16-5c043e527174"
- ],
- "x-ms-correlation-request-id": [
- "1958a4db-5f03-40a9-9d16-5c043e527174"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124243Z:1958a4db-5f03-40a9-9d16-5c043e527174"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:42:43 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11858"
- ],
- "x-ms-request-id": [
- "498b98c2-b2d5-495e-84a4-822bdb5441e5"
- ],
- "x-ms-correlation-request-id": [
- "498b98c2-b2d5-495e-84a4-822bdb5441e5"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124258Z:498b98c2-b2d5-495e-84a4-822bdb5441e5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:42:58 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11857"
- ],
- "x-ms-request-id": [
- "062df043-e3cc-48e0-aba5-08b94714fb5c"
- ],
- "x-ms-correlation-request-id": [
- "062df043-e3cc-48e0-aba5-08b94714fb5c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124314Z:062df043-e3cc-48e0-aba5-08b94714fb5c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:43:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11856"
- ],
- "x-ms-request-id": [
- "ac5781a6-27c7-4f78-b900-0b9c446eb94c"
- ],
- "x-ms-correlation-request-id": [
- "ac5781a6-27c7-4f78-b900-0b9c446eb94c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124329Z:ac5781a6-27c7-4f78-b900-0b9c446eb94c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:43:29 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11855"
- ],
- "x-ms-request-id": [
- "770efd78-9afc-4988-a7b9-af88de672c36"
- ],
- "x-ms-correlation-request-id": [
- "770efd78-9afc-4988-a7b9-af88de672c36"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124344Z:770efd78-9afc-4988-a7b9-af88de672c36"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:43:44 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11854"
- ],
- "x-ms-request-id": [
- "21ef257c-4c5a-4fea-9a93-e59f3c93c305"
- ],
- "x-ms-correlation-request-id": [
- "21ef257c-4c5a-4fea-9a93-e59f3c93c305"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124359Z:21ef257c-4c5a-4fea-9a93-e59f3c93c305"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:43:58 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11853"
- ],
- "x-ms-request-id": [
- "b0f52c5a-aada-44ce-a539-2916a85bb141"
- ],
- "x-ms-correlation-request-id": [
- "b0f52c5a-aada-44ce-a539-2916a85bb141"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124414Z:b0f52c5a-aada-44ce-a539-2916a85bb141"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:44:14 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11852"
- ],
- "x-ms-request-id": [
- "19afe541-6b05-4800-a6d9-fd37decfc8e0"
- ],
- "x-ms-correlation-request-id": [
- "19afe541-6b05-4800-a6d9-fd37decfc8e0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124429Z:19afe541-6b05-4800-a6d9-fd37decfc8e0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:44:29 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11851"
- ],
- "x-ms-request-id": [
- "ca5f5613-e24c-46b4-882c-4c13807a8655"
- ],
- "x-ms-correlation-request-id": [
- "ca5f5613-e24c-46b4-882c-4c13807a8655"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124444Z:ca5f5613-e24c-46b4-882c-4c13807a8655"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:44:44 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11850"
- ],
- "x-ms-request-id": [
- "c7dedfee-cba1-4ed6-acd0-954721d23c7c"
- ],
- "x-ms-correlation-request-id": [
- "c7dedfee-cba1-4ed6-acd0-954721d23c7c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124459Z:c7dedfee-cba1-4ed6-acd0-954721d23c7c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:44:59 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11850"
- ],
- "x-ms-request-id": [
- "3373f870-ebc7-443b-b25b-f22a8198b385"
- ],
- "x-ms-correlation-request-id": [
- "3373f870-ebc7-443b-b25b-f22a8198b385"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124514Z:3373f870-ebc7-443b-b25b-f22a8198b385"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:45:14 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11849"
- ],
- "x-ms-request-id": [
- "887f6342-4f78-474b-be0d-20101ef563de"
- ],
- "x-ms-correlation-request-id": [
- "887f6342-4f78-474b-be0d-20101ef563de"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124530Z:887f6342-4f78-474b-be0d-20101ef563de"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:45:29 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11848"
- ],
- "x-ms-request-id": [
- "5d8d77b6-e072-40f7-9a26-9e2fd537af89"
- ],
- "x-ms-correlation-request-id": [
- "5d8d77b6-e072-40f7-9a26-9e2fd537af89"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124545Z:5d8d77b6-e072-40f7-9a26-9e2fd537af89"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:45:44 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11847"
- ],
- "x-ms-request-id": [
- "bc36a747-b797-4391-9a5e-f772c12e5f67"
- ],
- "x-ms-correlation-request-id": [
- "bc36a747-b797-4391-9a5e-f772c12e5f67"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124600Z:bc36a747-b797-4391-9a5e-f772c12e5f67"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:46:00 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11846"
- ],
- "x-ms-request-id": [
- "435423cf-a3ca-4ba7-8646-19620b67edbf"
- ],
- "x-ms-correlation-request-id": [
- "435423cf-a3ca-4ba7-8646-19620b67edbf"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124615Z:435423cf-a3ca-4ba7-8646-19620b67edbf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:46:14 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11845"
- ],
- "x-ms-request-id": [
- "467e189b-252d-46b3-aa52-8aa957fe873f"
- ],
- "x-ms-correlation-request-id": [
- "467e189b-252d-46b3-aa52-8aa957fe873f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124630Z:467e189b-252d-46b3-aa52-8aa957fe873f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:46:29 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11844"
- ],
- "x-ms-request-id": [
- "60eb64eb-2f7e-4ee4-ab54-2845857f6bb3"
- ],
- "x-ms-correlation-request-id": [
- "60eb64eb-2f7e-4ee4-ab54-2845857f6bb3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124645Z:60eb64eb-2f7e-4ee4-ab54-2845857f6bb3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:46:45 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11843"
- ],
- "x-ms-request-id": [
- "c88effe2-8683-4dfd-bd9c-09d13d5d2877"
- ],
- "x-ms-correlation-request-id": [
- "c88effe2-8683-4dfd-bd9c-09d13d5d2877"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124700Z:c88effe2-8683-4dfd-bd9c-09d13d5d2877"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:47:00 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11842"
- ],
- "x-ms-request-id": [
- "8d715a4b-6bde-44b2-9e41-807f9336bcce"
- ],
- "x-ms-correlation-request-id": [
- "8d715a4b-6bde-44b2-9e41-807f9336bcce"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124715Z:8d715a4b-6bde-44b2-9e41-807f9336bcce"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:47:14 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11841"
- ],
- "x-ms-request-id": [
- "b47252fd-20d6-4eb6-a557-6df84ac38ee9"
- ],
- "x-ms-correlation-request-id": [
- "b47252fd-20d6-4eb6-a557-6df84ac38ee9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124730Z:b47252fd-20d6-4eb6-a557-6df84ac38ee9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:47:29 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11840"
- ],
- "x-ms-request-id": [
- "6f8a45ce-90c7-4778-be20-e91971c8b06f"
- ],
- "x-ms-correlation-request-id": [
- "6f8a45ce-90c7-4778-be20-e91971c8b06f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124746Z:6f8a45ce-90c7-4778-be20-e91971c8b06f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:47:45 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11839"
- ],
- "x-ms-request-id": [
- "46fa3149-b2f6-49ef-8339-704115e3cfef"
- ],
- "x-ms-correlation-request-id": [
- "46fa3149-b2f6-49ef-8339-704115e3cfef"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124801Z:46fa3149-b2f6-49ef-8339-704115e3cfef"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:48:00 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11838"
- ],
- "x-ms-request-id": [
- "32bb7b73-ed2d-4aae-b0cf-4dc5853e4d44"
- ],
- "x-ms-correlation-request-id": [
- "32bb7b73-ed2d-4aae-b0cf-4dc5853e4d44"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124816Z:32bb7b73-ed2d-4aae-b0cf-4dc5853e4d44"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:48:15 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11837"
- ],
- "x-ms-request-id": [
- "f5343fec-e567-4c6f-b6e7-740eca58427e"
- ],
- "x-ms-correlation-request-id": [
- "f5343fec-e567-4c6f-b6e7-740eca58427e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124831Z:f5343fec-e567-4c6f-b6e7-740eca58427e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:48:31 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11836"
- ],
- "x-ms-request-id": [
- "ea7943e2-4a40-4b53-9d26-ef0ba895b793"
- ],
- "x-ms-correlation-request-id": [
- "ea7943e2-4a40-4b53-9d26-ef0ba895b793"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124846Z:ea7943e2-4a40-4b53-9d26-ef0ba895b793"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:48:46 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11835"
- ],
- "x-ms-request-id": [
- "75e8bb09-6b34-43b3-abf8-cdbf638e2c28"
- ],
- "x-ms-correlation-request-id": [
- "75e8bb09-6b34-43b3-abf8-cdbf638e2c28"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124901Z:75e8bb09-6b34-43b3-abf8-cdbf638e2c28"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:49:01 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11834"
- ],
- "x-ms-request-id": [
- "62af7fdb-6b3f-4096-8128-0fcbc3b58cb3"
- ],
- "x-ms-correlation-request-id": [
- "62af7fdb-6b3f-4096-8128-0fcbc3b58cb3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124916Z:62af7fdb-6b3f-4096-8128-0fcbc3b58cb3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:49:16 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11833"
- ],
- "x-ms-request-id": [
- "a693a0b6-e459-4d20-b7c1-d3bd4c8d8ee3"
- ],
- "x-ms-correlation-request-id": [
- "a693a0b6-e459-4d20-b7c1-d3bd4c8d8ee3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124931Z:a693a0b6-e459-4d20-b7c1-d3bd4c8d8ee3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:49:30 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11832"
- ],
- "x-ms-request-id": [
- "5ae5ff9c-a977-4fa1-bc47-c7e289f08880"
- ],
- "x-ms-correlation-request-id": [
- "5ae5ff9c-a977-4fa1-bc47-c7e289f08880"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T124947Z:5ae5ff9c-a977-4fa1-bc47-c7e289f08880"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:49:46 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11831"
- ],
- "x-ms-request-id": [
- "cb853990-6b83-4985-b26b-e14045eddd57"
- ],
- "x-ms-correlation-request-id": [
- "cb853990-6b83-4985-b26b-e14045eddd57"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125002Z:cb853990-6b83-4985-b26b-e14045eddd57"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:50:01 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11830"
- ],
- "x-ms-request-id": [
- "a9181aa4-7546-4e95-a76c-9373af2dc283"
- ],
- "x-ms-correlation-request-id": [
- "a9181aa4-7546-4e95-a76c-9373af2dc283"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125017Z:a9181aa4-7546-4e95-a76c-9373af2dc283"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:50:16 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11829"
- ],
- "x-ms-request-id": [
- "4df3b4d4-aa21-4d38-abdf-b6705766e5bd"
- ],
- "x-ms-correlation-request-id": [
- "4df3b4d4-aa21-4d38-abdf-b6705766e5bd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125032Z:4df3b4d4-aa21-4d38-abdf-b6705766e5bd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:50:31 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11828"
- ],
- "x-ms-request-id": [
- "a4447503-5130-4de7-9fae-95da24fb95c3"
- ],
- "x-ms-correlation-request-id": [
- "a4447503-5130-4de7-9fae-95da24fb95c3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125047Z:a4447503-5130-4de7-9fae-95da24fb95c3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:50:46 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11827"
- ],
- "x-ms-request-id": [
- "f827c58f-c799-4623-b2ac-9e5da70ec197"
- ],
- "x-ms-correlation-request-id": [
- "f827c58f-c799-4623-b2ac-9e5da70ec197"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125102Z:f827c58f-c799-4623-b2ac-9e5da70ec197"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:51:02 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11826"
- ],
- "x-ms-request-id": [
- "5faf76c1-c81f-4df8-bd74-27c464c2b572"
- ],
- "x-ms-correlation-request-id": [
- "5faf76c1-c81f-4df8-bd74-27c464c2b572"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125117Z:5faf76c1-c81f-4df8-bd74-27c464c2b572"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:51:17 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11825"
- ],
- "x-ms-request-id": [
- "18e0cc38-651a-4b8b-b145-d42a47fd02b4"
- ],
- "x-ms-correlation-request-id": [
- "18e0cc38-651a-4b8b-b145-d42a47fd02b4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125132Z:18e0cc38-651a-4b8b-b145-d42a47fd02b4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:51:32 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11824"
- ],
- "x-ms-request-id": [
- "acd465ac-a69a-42f0-aefc-9fc31e22982f"
- ],
- "x-ms-correlation-request-id": [
- "acd465ac-a69a-42f0-aefc-9fc31e22982f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125147Z:acd465ac-a69a-42f0-aefc-9fc31e22982f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:51:47 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11823"
- ],
- "x-ms-request-id": [
- "17fb9778-e732-4669-825d-7d376fa56156"
- ],
- "x-ms-correlation-request-id": [
- "17fb9778-e732-4669-825d-7d376fa56156"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125202Z:17fb9778-e732-4669-825d-7d376fa56156"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:52:02 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11822"
- ],
- "x-ms-request-id": [
- "58ae0482-64f6-4398-9740-91172e8d76c8"
- ],
- "x-ms-correlation-request-id": [
- "58ae0482-64f6-4398-9740-91172e8d76c8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125218Z:58ae0482-64f6-4398-9740-91172e8d76c8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:52:17 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11821"
- ],
- "x-ms-request-id": [
- "8fd79ee0-e2ef-4a50-8928-7964faa109ee"
- ],
- "x-ms-correlation-request-id": [
- "8fd79ee0-e2ef-4a50-8928-7964faa109ee"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125233Z:8fd79ee0-e2ef-4a50-8928-7964faa109ee"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:52:32 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11820"
- ],
- "x-ms-request-id": [
- "bc9a8f2d-eeef-48ee-8a15-3e32060c4d35"
- ],
- "x-ms-correlation-request-id": [
- "bc9a8f2d-eeef-48ee-8a15-3e32060c4d35"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125248Z:bc9a8f2d-eeef-48ee-8a15-3e32060c4d35"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:52:47 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11819"
- ],
- "x-ms-request-id": [
- "481ae379-530f-4b0e-9213-013562eb459d"
- ],
- "x-ms-correlation-request-id": [
- "481ae379-530f-4b0e-9213-013562eb459d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125303Z:481ae379-530f-4b0e-9213-013562eb459d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:53:02 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11818"
- ],
- "x-ms-request-id": [
- "d183093c-bebf-44f8-a686-b4921211436f"
- ],
- "x-ms-correlation-request-id": [
- "d183093c-bebf-44f8-a686-b4921211436f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125318Z:d183093c-bebf-44f8-a686-b4921211436f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:53:17 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11817"
- ],
- "x-ms-request-id": [
- "b15f3d1c-5d88-46ab-83e4-08f22b795801"
- ],
- "x-ms-correlation-request-id": [
- "b15f3d1c-5d88-46ab-83e4-08f22b795801"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125333Z:b15f3d1c-5d88-46ab-83e4-08f22b795801"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:53:33 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11816"
- ],
- "x-ms-request-id": [
- "5174d400-9a50-4020-b549-60ca2fcca981"
- ],
- "x-ms-correlation-request-id": [
- "5174d400-9a50-4020-b549-60ca2fcca981"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125348Z:5174d400-9a50-4020-b549-60ca2fcca981"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:53:48 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11815"
- ],
- "x-ms-request-id": [
- "c9a7d1e0-9b5f-497a-81ce-d8c495793644"
- ],
- "x-ms-correlation-request-id": [
- "c9a7d1e0-9b5f-497a-81ce-d8c495793644"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125403Z:c9a7d1e0-9b5f-497a-81ce-d8c495793644"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:54:02 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11814"
- ],
- "x-ms-request-id": [
- "681ca21b-2614-4b7f-906b-27658dd7e362"
- ],
- "x-ms-correlation-request-id": [
- "681ca21b-2614-4b7f-906b-27658dd7e362"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125418Z:681ca21b-2614-4b7f-906b-27658dd7e362"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:54:18 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11813"
- ],
- "x-ms-request-id": [
- "c46049b0-dcf6-4746-aff9-73390d24c81a"
- ],
- "x-ms-correlation-request-id": [
- "c46049b0-dcf6-4746-aff9-73390d24c81a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125434Z:c46049b0-dcf6-4746-aff9-73390d24c81a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:54:33 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11812"
- ],
- "x-ms-request-id": [
- "79970216-88fc-4176-8f21-76c0d8d36173"
- ],
- "x-ms-correlation-request-id": [
- "79970216-88fc-4176-8f21-76c0d8d36173"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125449Z:79970216-88fc-4176-8f21-76c0d8d36173"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:54:48 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11811"
- ],
- "x-ms-request-id": [
- "c06de9b6-070b-484d-b0a8-7516f328063c"
- ],
- "x-ms-correlation-request-id": [
- "c06de9b6-070b-484d-b0a8-7516f328063c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125504Z:c06de9b6-070b-484d-b0a8-7516f328063c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:55:03 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11810"
- ],
- "x-ms-request-id": [
- "36d1e0d0-7f5a-4842-a168-c8f14ac5a68c"
- ],
- "x-ms-correlation-request-id": [
- "36d1e0d0-7f5a-4842-a168-c8f14ac5a68c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125519Z:36d1e0d0-7f5a-4842-a168-c8f14ac5a68c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:55:18 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11809"
- ],
- "x-ms-request-id": [
- "d7ed70c1-b416-4006-bbed-8b5df5313c56"
- ],
- "x-ms-correlation-request-id": [
- "d7ed70c1-b416-4006-bbed-8b5df5313c56"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125534Z:d7ed70c1-b416-4006-bbed-8b5df5313c56"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:55:34 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11808"
- ],
- "x-ms-request-id": [
- "a3eb14d8-c78e-4042-8361-a6735708c564"
- ],
- "x-ms-correlation-request-id": [
- "a3eb14d8-c78e-4042-8361-a6735708c564"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125549Z:a3eb14d8-c78e-4042-8361-a6735708c564"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:55:49 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11807"
- ],
- "x-ms-request-id": [
- "99d02c12-d6a9-4efa-b6a0-848de8a3f440"
- ],
- "x-ms-correlation-request-id": [
- "99d02c12-d6a9-4efa-b6a0-848de8a3f440"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125604Z:99d02c12-d6a9-4efa-b6a0-848de8a3f440"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:56:03 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11806"
- ],
- "x-ms-request-id": [
- "710d27e8-3193-4b3d-a54b-b6bb359296a8"
- ],
- "x-ms-correlation-request-id": [
- "710d27e8-3193-4b3d-a54b-b6bb359296a8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125619Z:710d27e8-3193-4b3d-a54b-b6bb359296a8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:56:19 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11805"
- ],
- "x-ms-request-id": [
- "a246d81b-4e51-4173-8e35-8dd2a8a10fed"
- ],
- "x-ms-correlation-request-id": [
- "a246d81b-4e51-4173-8e35-8dd2a8a10fed"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125634Z:a246d81b-4e51-4173-8e35-8dd2a8a10fed"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:56:34 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11804"
- ],
- "x-ms-request-id": [
- "afe643bd-0711-43a5-9e04-e4da0c451c9c"
- ],
- "x-ms-correlation-request-id": [
- "afe643bd-0711-43a5-9e04-e4da0c451c9c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125649Z:afe643bd-0711-43a5-9e04-e4da0c451c9c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:56:49 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11803"
- ],
- "x-ms-request-id": [
- "4efe2ef6-78d0-497f-94d2-2a21bf59dfe5"
- ],
- "x-ms-correlation-request-id": [
- "4efe2ef6-78d0-497f-94d2-2a21bf59dfe5"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125705Z:4efe2ef6-78d0-497f-94d2-2a21bf59dfe5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:57:04 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11802"
- ],
- "x-ms-request-id": [
- "f7b172ab-12af-40b1-ae5c-aca71a37b332"
- ],
- "x-ms-correlation-request-id": [
- "f7b172ab-12af-40b1-ae5c-aca71a37b332"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125720Z:f7b172ab-12af-40b1-ae5c-aca71a37b332"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:57:20 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11801"
- ],
- "x-ms-request-id": [
- "994c852f-0a5c-4359-9df4-7d11844a94ca"
- ],
- "x-ms-correlation-request-id": [
- "994c852f-0a5c-4359-9df4-7d11844a94ca"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125735Z:994c852f-0a5c-4359-9df4-7d11844a94ca"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:57:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11800"
- ],
- "x-ms-request-id": [
- "1c6c728d-216e-4205-8b25-26b671bba47c"
- ],
- "x-ms-correlation-request-id": [
- "1c6c728d-216e-4205-8b25-26b671bba47c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125750Z:1c6c728d-216e-4205-8b25-26b671bba47c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:57:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11799"
- ],
- "x-ms-request-id": [
- "ee030b8e-73d0-4890-b77f-dbf7aea11e3b"
- ],
- "x-ms-correlation-request-id": [
- "ee030b8e-73d0-4890-b77f-dbf7aea11e3b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125805Z:ee030b8e-73d0-4890-b77f-dbf7aea11e3b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:58:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11798"
- ],
- "x-ms-request-id": [
- "3b7f3e99-80fc-41e0-b47b-f38fb0f39075"
- ],
- "x-ms-correlation-request-id": [
- "3b7f3e99-80fc-41e0-b47b-f38fb0f39075"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125820Z:3b7f3e99-80fc-41e0-b47b-f38fb0f39075"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:58:20 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11797"
- ],
- "x-ms-request-id": [
- "2a597e62-2d77-4d3b-bd5f-a76ee7321076"
- ],
- "x-ms-correlation-request-id": [
- "2a597e62-2d77-4d3b-bd5f-a76ee7321076"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125835Z:2a597e62-2d77-4d3b-bd5f-a76ee7321076"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:58:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11796"
- ],
- "x-ms-request-id": [
- "02b5c582-49db-40a5-b358-39914756dc98"
- ],
- "x-ms-correlation-request-id": [
- "02b5c582-49db-40a5-b358-39914756dc98"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125850Z:02b5c582-49db-40a5-b358-39914756dc98"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:58:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11795"
- ],
- "x-ms-request-id": [
- "46beec6b-6784-4a63-a23c-182b31bb890e"
- ],
- "x-ms-correlation-request-id": [
- "46beec6b-6784-4a63-a23c-182b31bb890e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125906Z:46beec6b-6784-4a63-a23c-182b31bb890e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:59:06 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11794"
- ],
- "x-ms-request-id": [
- "6bd7eace-03fa-4f48-ac8d-b34ed3169b9c"
- ],
- "x-ms-correlation-request-id": [
- "6bd7eace-03fa-4f48-ac8d-b34ed3169b9c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125921Z:6bd7eace-03fa-4f48-ac8d-b34ed3169b9c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:59:21 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11793"
- ],
- "x-ms-request-id": [
- "de393a35-18ae-4d53-b568-2ec53610f487"
- ],
- "x-ms-correlation-request-id": [
- "de393a35-18ae-4d53-b568-2ec53610f487"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125936Z:de393a35-18ae-4d53-b568-2ec53610f487"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:59:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11792"
- ],
- "x-ms-request-id": [
- "a604f611-ad24-4aa3-b6fd-80e08262bf98"
- ],
- "x-ms-correlation-request-id": [
- "a604f611-ad24-4aa3-b6fd-80e08262bf98"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T125951Z:a604f611-ad24-4aa3-b6fd-80e08262bf98"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 12:59:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11791"
- ],
- "x-ms-request-id": [
- "3a3585fa-4914-4184-9006-ea2567949c0b"
- ],
- "x-ms-correlation-request-id": [
- "3a3585fa-4914-4184-9006-ea2567949c0b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130006Z:3a3585fa-4914-4184-9006-ea2567949c0b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:00:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11790"
- ],
- "x-ms-request-id": [
- "dbf45325-12ea-4666-8abb-5b33c43792c9"
- ],
- "x-ms-correlation-request-id": [
- "dbf45325-12ea-4666-8abb-5b33c43792c9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130021Z:dbf45325-12ea-4666-8abb-5b33c43792c9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:00:20 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11789"
- ],
- "x-ms-request-id": [
- "ac97ea3d-6b5f-4ac2-a0ff-a9c84a78839a"
- ],
- "x-ms-correlation-request-id": [
- "ac97ea3d-6b5f-4ac2-a0ff-a9c84a78839a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130036Z:ac97ea3d-6b5f-4ac2-a0ff-a9c84a78839a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:00:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11788"
- ],
- "x-ms-request-id": [
- "a5303ff9-d738-43f1-851a-ccd4839056dc"
- ],
- "x-ms-correlation-request-id": [
- "a5303ff9-d738-43f1-851a-ccd4839056dc"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130051Z:a5303ff9-d738-43f1-851a-ccd4839056dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:00:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11787"
- ],
- "x-ms-request-id": [
- "e873a762-ff04-4da8-b9b1-3bcccb07f3e7"
- ],
- "x-ms-correlation-request-id": [
- "e873a762-ff04-4da8-b9b1-3bcccb07f3e7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130106Z:e873a762-ff04-4da8-b9b1-3bcccb07f3e7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:01:06 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11786"
- ],
- "x-ms-request-id": [
- "bdd3cc72-cf71-4bf1-8d1b-73a4ec30b3d0"
- ],
- "x-ms-correlation-request-id": [
- "bdd3cc72-cf71-4bf1-8d1b-73a4ec30b3d0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130122Z:bdd3cc72-cf71-4bf1-8d1b-73a4ec30b3d0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:01:21 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11785"
- ],
- "x-ms-request-id": [
- "fb6c156f-58ee-4408-95d1-9ff05240a724"
- ],
- "x-ms-correlation-request-id": [
- "fb6c156f-58ee-4408-95d1-9ff05240a724"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130137Z:fb6c156f-58ee-4408-95d1-9ff05240a724"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:01:36 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11784"
- ],
- "x-ms-request-id": [
- "26648dcc-476b-4304-9dba-c10415550bed"
- ],
- "x-ms-correlation-request-id": [
- "26648dcc-476b-4304-9dba-c10415550bed"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130152Z:26648dcc-476b-4304-9dba-c10415550bed"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:01:51 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11783"
- ],
- "x-ms-request-id": [
- "81c6eaac-f99e-4f5b-924b-fdd35965a15c"
- ],
- "x-ms-correlation-request-id": [
- "81c6eaac-f99e-4f5b-924b-fdd35965a15c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130207Z:81c6eaac-f99e-4f5b-924b-fdd35965a15c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:02:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11782"
- ],
- "x-ms-request-id": [
- "92744e47-5db2-49b5-a5d8-8b4b628b54cb"
- ],
- "x-ms-correlation-request-id": [
- "92744e47-5db2-49b5-a5d8-8b4b628b54cb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130222Z:92744e47-5db2-49b5-a5d8-8b4b628b54cb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:02:22 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11781"
- ],
- "x-ms-request-id": [
- "e3ce997d-381a-42dd-ad95-ba4e2d29d76b"
- ],
- "x-ms-correlation-request-id": [
- "e3ce997d-381a-42dd-ad95-ba4e2d29d76b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130237Z:e3ce997d-381a-42dd-ad95-ba4e2d29d76b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:02:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11780"
- ],
- "x-ms-request-id": [
- "a5cac051-d698-479b-9dca-fd986ec57a91"
- ],
- "x-ms-correlation-request-id": [
- "a5cac051-d698-479b-9dca-fd986ec57a91"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130252Z:a5cac051-d698-479b-9dca-fd986ec57a91"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:02:52 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11779"
- ],
- "x-ms-request-id": [
- "8b990c93-1221-4d71-b190-bd3cad40199a"
- ],
- "x-ms-correlation-request-id": [
- "8b990c93-1221-4d71-b190-bd3cad40199a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130307Z:8b990c93-1221-4d71-b190-bd3cad40199a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:03:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11778"
- ],
- "x-ms-request-id": [
- "c7379287-d74f-4cce-a630-03725a307ca4"
- ],
- "x-ms-correlation-request-id": [
- "c7379287-d74f-4cce-a630-03725a307ca4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130322Z:c7379287-d74f-4cce-a630-03725a307ca4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:03:21 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11777"
- ],
- "x-ms-request-id": [
- "6110655f-19d0-40e7-ad1f-34f2e8b45b9b"
- ],
- "x-ms-correlation-request-id": [
- "6110655f-19d0-40e7-ad1f-34f2e8b45b9b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130338Z:6110655f-19d0-40e7-ad1f-34f2e8b45b9b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:03:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11776"
- ],
- "x-ms-request-id": [
- "29faddbb-5c91-41da-b957-cec5aeb7df96"
- ],
- "x-ms-correlation-request-id": [
- "29faddbb-5c91-41da-b957-cec5aeb7df96"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130353Z:29faddbb-5c91-41da-b957-cec5aeb7df96"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:03:52 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11775"
- ],
- "x-ms-request-id": [
- "740565fd-36eb-4dc9-8c3e-9846364445e9"
- ],
- "x-ms-correlation-request-id": [
- "740565fd-36eb-4dc9-8c3e-9846364445e9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130408Z:740565fd-36eb-4dc9-8c3e-9846364445e9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:04:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11774"
- ],
- "x-ms-request-id": [
- "8bd4fcc5-29c5-4d2d-b1b1-79e02efbd4c6"
- ],
- "x-ms-correlation-request-id": [
- "8bd4fcc5-29c5-4d2d-b1b1-79e02efbd4c6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130423Z:8bd4fcc5-29c5-4d2d-b1b1-79e02efbd4c6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:04:22 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11773"
- ],
- "x-ms-request-id": [
- "e2b4acf3-c8c9-4b28-a34e-bd7d8b4f9eb7"
- ],
- "x-ms-correlation-request-id": [
- "e2b4acf3-c8c9-4b28-a34e-bd7d8b4f9eb7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130438Z:e2b4acf3-c8c9-4b28-a34e-bd7d8b4f9eb7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:04:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11772"
- ],
- "x-ms-request-id": [
- "7c24694e-b383-4313-a239-2b742c8fe4e2"
- ],
- "x-ms-correlation-request-id": [
- "7c24694e-b383-4313-a239-2b742c8fe4e2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130453Z:7c24694e-b383-4313-a239-2b742c8fe4e2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:04:52 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11771"
- ],
- "x-ms-request-id": [
- "88895d1d-82b8-4c23-963e-ad2020f05cdc"
- ],
- "x-ms-correlation-request-id": [
- "88895d1d-82b8-4c23-963e-ad2020f05cdc"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130508Z:88895d1d-82b8-4c23-963e-ad2020f05cdc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:05:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11770"
- ],
- "x-ms-request-id": [
- "2ca4caa8-08bb-4d36-ae0f-3f3022110d67"
- ],
- "x-ms-correlation-request-id": [
- "2ca4caa8-08bb-4d36-ae0f-3f3022110d67"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130523Z:2ca4caa8-08bb-4d36-ae0f-3f3022110d67"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:05:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11769"
- ],
- "x-ms-request-id": [
- "764ad457-fb2c-4337-a5ab-2911fefa730e"
- ],
- "x-ms-correlation-request-id": [
- "764ad457-fb2c-4337-a5ab-2911fefa730e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130538Z:764ad457-fb2c-4337-a5ab-2911fefa730e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:05:38 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11768"
- ],
- "x-ms-request-id": [
- "86f11ec3-601c-481b-8076-cce438fe8946"
- ],
- "x-ms-correlation-request-id": [
- "86f11ec3-601c-481b-8076-cce438fe8946"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130554Z:86f11ec3-601c-481b-8076-cce438fe8946"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:05:53 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11767"
- ],
- "x-ms-request-id": [
- "d957cba7-1da1-4754-acb8-bfc955f1f82d"
- ],
- "x-ms-correlation-request-id": [
- "d957cba7-1da1-4754-acb8-bfc955f1f82d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130609Z:d957cba7-1da1-4754-acb8-bfc955f1f82d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:06:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11766"
- ],
- "x-ms-request-id": [
- "cdc1b6e4-176b-42ef-bc71-851564a9e98c"
- ],
- "x-ms-correlation-request-id": [
- "cdc1b6e4-176b-42ef-bc71-851564a9e98c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130624Z:cdc1b6e4-176b-42ef-bc71-851564a9e98c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:06:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11765"
- ],
- "x-ms-request-id": [
- "0e1d67ef-aba2-461d-8d14-ce02647f213d"
- ],
- "x-ms-correlation-request-id": [
- "0e1d67ef-aba2-461d-8d14-ce02647f213d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130639Z:0e1d67ef-aba2-461d-8d14-ce02647f213d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:06:39 GMT"
+ "Wed, 05 Aug 2020 06:25:29 GMT"
],
"Expires": [
"-1"
@@ -19117,16 +3141,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -19137,22 +3161,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11764"
+ "11995"
],
"x-ms-request-id": [
- "a1b8a81a-59d7-4438-b8d7-fd70960d6c3a"
+ "2565111b-269d-410e-b629-ee67d71197ff"
],
"x-ms-correlation-request-id": [
- "a1b8a81a-59d7-4438-b8d7-fd70960d6c3a"
+ "2565111b-269d-410e-b629-ee67d71197ff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T130654Z:a1b8a81a-59d7-4438-b8d7-fd70960d6c3a"
+ "WESTUS:20200805T062545Z:2565111b-269d-410e-b629-ee67d71197ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19161,7 +3185,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 13:06:54 GMT"
+ "Wed, 05 Aug 2020 06:25:44 GMT"
],
"Expires": [
"-1"
@@ -19174,16 +3198,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -19194,22 +3218,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11763"
+ "11994"
],
"x-ms-request-id": [
- "0bf8afad-5432-46dc-b9c7-3ee83532bf25"
+ "1e96d0f4-b214-4d8c-b368-bfbd39070d1f"
],
"x-ms-correlation-request-id": [
- "0bf8afad-5432-46dc-b9c7-3ee83532bf25"
+ "1e96d0f4-b214-4d8c-b368-bfbd39070d1f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T130709Z:0bf8afad-5432-46dc-b9c7-3ee83532bf25"
+ "WESTUS:20200805T062600Z:1e96d0f4-b214-4d8c-b368-bfbd39070d1f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19218,7 +3242,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 13:07:08 GMT"
+ "Wed, 05 Aug 2020 06:25:59 GMT"
],
"Expires": [
"-1"
@@ -19231,16 +3255,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -19251,22 +3275,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11762"
+ "11993"
],
"x-ms-request-id": [
- "c60fe7ec-3bbc-4907-908a-8756542d5824"
+ "8550dee1-b415-4bf6-9d33-2524fa83850c"
],
"x-ms-correlation-request-id": [
- "c60fe7ec-3bbc-4907-908a-8756542d5824"
+ "8550dee1-b415-4bf6-9d33-2524fa83850c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T130724Z:c60fe7ec-3bbc-4907-908a-8756542d5824"
+ "WESTUS:20200805T062615Z:8550dee1-b415-4bf6-9d33-2524fa83850c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19275,7 +3299,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 13:07:23 GMT"
+ "Wed, 05 Aug 2020 06:26:14 GMT"
],
"Expires": [
"-1"
@@ -19288,16 +3312,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -19307,23 +3331,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11761"
+ "11992"
],
"x-ms-request-id": [
- "0f1d79d4-ed21-41c3-b25c-8f28fc798bfe"
+ "5eccc63d-ca71-43c3-bb56-d7428063a047"
],
"x-ms-correlation-request-id": [
- "0f1d79d4-ed21-41c3-b25c-8f28fc798bfe"
+ "5eccc63d-ca71-43c3-bb56-d7428063a047"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T130739Z:0f1d79d4-ed21-41c3-b25c-8f28fc798bfe"
+ "WESTUS:20200805T062630Z:5eccc63d-ca71-43c3-bb56-d7428063a047"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19332,7 +3350,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 13:07:39 GMT"
+ "Wed, 05 Aug 2020 06:26:29 GMT"
],
"Expires": [
"-1"
@@ -19342,19 +3360,19 @@
]
},
"ResponseBody": "",
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MDYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01EWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28928.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
]
},
"ResponseHeaders": {
@@ -19364,23 +3382,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11760"
+ "11991"
],
"x-ms-request-id": [
- "c8f6b7cf-1ce1-424f-8458-3a1e7ca81929"
+ "f0284cf9-2741-4231-9e4e-d0a75082a6ee"
],
"x-ms-correlation-request-id": [
- "c8f6b7cf-1ce1-424f-8458-3a1e7ca81929"
+ "f0284cf9-2741-4231-9e4e-d0a75082a6ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20200115T130755Z:c8f6b7cf-1ce1-424f-8458-3a1e7ca81929"
+ "WESTUS:20200805T062630Z:f0284cf9-2741-4231-9e4e-d0a75082a6ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19389,7 +3401,7 @@
"nosniff"
],
"Date": [
- "Wed, 15 Jan 2020 13:07:54 GMT"
+ "Wed, 05 Aug 2020 06:26:29 GMT"
],
"Expires": [
"-1"
@@ -19399,75 +3411,18 @@
]
},
"ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwNDUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd05EVXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.14393.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11759"
- ],
- "x-ms-request-id": [
- "816c7511-18f8-439e-8106-30bc70443843"
- ],
- "x-ms-correlation-request-id": [
- "816c7511-18f8-439e-8106-30bc70443843"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20200115T130810Z:816c7511-18f8-439e-8106-30bc70443843"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 15 Jan 2020 13:08:09 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "407"
- ]
- },
- "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionTimeout\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'ps9045' did not finish within the allowed time as resources with identifiers '' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is 'c3d50b36-a445-4dfd-ab26-0a6d52dc66bb'. Please check audit logs for more details.\",\r\n \"Details\": [],\r\n \"AdditionalInfo\": null\r\n }\r\n}",
- "StatusCode": 409
+ "StatusCode": 200
}
],
"Names": {
"Test-VirtualRouterCRUD": [
- "ps9045",
- "ps9395",
- "ps1232",
- "ps2045",
- "ps145",
- "ps3933",
- "ps4933"
+ "ps9706",
+ "ps5754",
+ "ps6370",
+ "ps7855"
]
},
"Variables": {
- "SubscriptionId": "62364504-2406-418e-971c-05822ff72fad"
+ "SubscriptionId": "8c992d64-fce9-426d-b278-85642dfeab03"
}
}
\ No newline at end of file
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json
new file mode 100644
index 000000000000..e6136b27bdb2
--- /dev/null
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json
@@ -0,0 +1,4493 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourcegroups/ps3045?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlZ3JvdXBzL3BzMzA0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f3b10d9c-4a32-470f-8ae8-4d7d2a71780b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "35"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "5c94dbb1-f13f-4e63-a9c2-5b72911cf615"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c94dbb1-f13f-4e63-a9c2-5b72911cf615"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050148Z:5c94dbb1-f13f-4e63-a9c2-5b72911cf615"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:01:48 GMT"
+ ],
+ "Content-Length": [
+ "172"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045\",\r\n \"name\": \"ps3045\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTIxNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "68578e52-9a54-4afc-8dc6-5e15d96ef72c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "046d8192-0573-402a-9bf5-1e579d396033"
+ ],
+ "x-ms-correlation-request-id": [
+ "046d8192-0573-402a-9bf5-1e579d396033"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050151Z:046d8192-0573-402a-9bf5-1e579d396033"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:01:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "218"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5215' under resource group 'ps3045' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTIxNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b762a06f-620a-4546-a351-4c10f28834c6\""
+ ],
+ "x-ms-request-id": [
+ "2c407010-72ff-4b92-b5a9-b36488ee4c54"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbde6f76-2bf8-43d1-8e3f-d6ead006c291"
+ ],
+ "x-ms-arm-service-request-id": [
+ "62b1bde6-28ab-42b2-9e66-b366f3d1ffd3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050202Z:bbde6f76-2bf8-43d1-8e3f-d6ead006c291"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:01 GMT"
+ ],
+ "Content-Length": [
+ "1297"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5215\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215\",\r\n \"etag\": \"W/\\\"b762a06f-620a-4546-a351-4c10f28834c6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62989e12-59a1-4788-8094-90afe20f67c1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps43\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\",\r\n \"etag\": \"W/\\\"b762a06f-620a-4546-a351-4c10f28834c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTIxNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "380bdf5f-ed14-48d5-bdce-b5675f5f97e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b762a06f-620a-4546-a351-4c10f28834c6\""
+ ],
+ "x-ms-request-id": [
+ "9210a31b-8477-4562-bb2f-ef63194a2549"
+ ],
+ "x-ms-correlation-request-id": [
+ "26b7ee2f-917b-4245-a72f-58d5e354d3a1"
+ ],
+ "x-ms-arm-service-request-id": [
+ "35244841-31d6-46f9-b57b-6e2a04848003"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050202Z:26b7ee2f-917b-4245-a72f-58d5e354d3a1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:02 GMT"
+ ],
+ "Content-Length": [
+ "1297"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5215\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215\",\r\n \"etag\": \"W/\\\"b762a06f-620a-4546-a351-4c10f28834c6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62989e12-59a1-4788-8094-90afe20f67c1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps43\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\",\r\n \"etag\": \"W/\\\"b762a06f-620a-4546-a351-4c10f28834c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTIxNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "519cd57c-9525-4b8e-8ea4-858e40c26c69"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b762a06f-620a-4546-a351-4c10f28834c6\""
+ ],
+ "x-ms-request-id": [
+ "e5289b40-7b18-4f8a-a742-68fa1d52e6fa"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb84010c-9525-45f3-b44a-c4023ab5ad32"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b9c09162-37e9-49a8-919d-91506c5943e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050203Z:eb84010c-9525-45f3-b44a-c4023ab5ad32"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:03 GMT"
+ ],
+ "Content-Length": [
+ "1297"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5215\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215\",\r\n \"etag\": \"W/\\\"b762a06f-620a-4546-a351-4c10f28834c6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62989e12-59a1-4788-8094-90afe20f67c1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps43\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\",\r\n \"etag\": \"W/\\\"b762a06f-620a-4546-a351-4c10f28834c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTIxNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"ps43\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f13b63c7-0071-4bf7-a0f8-80467ed538d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "682"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "3"
+ ],
+ "x-ms-request-id": [
+ "346bcb57-33d0-4b50-869a-7d25922e1a9b"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/346bcb57-33d0-4b50-869a-7d25922e1a9b?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaf70b14-2e43-4a24-9211-05635dd26ec0"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8e765a73-d775-4ade-b02b-6b52a0065215"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050158Z:eaf70b14-2e43-4a24-9211-05635dd26ec0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:01:57 GMT"
+ ],
+ "Content-Length": [
+ "1295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps5215\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215\",\r\n \"etag\": \"W/\\\"1910912a-6857-46f1-8ebb-9da3a92c5954\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"62989e12-59a1-4788-8094-90afe20f67c1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps43\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\",\r\n \"etag\": \"W/\\\"1910912a-6857-46f1-8ebb-9da3a92c5954\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/346bcb57-33d0-4b50-869a-7d25922e1a9b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzM0NmJjYjU3LTMzZDAtNGI1MC04NjlhLTdkMjU5MjJlMWE5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0ba7633f-9edc-47c9-b3be-8b0a174e4715"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a50b9ce-0b54-45f6-a7d4-dd3e035e517f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6cfe7a6d-ecca-4481-a518-6e49095037bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050201Z:1a50b9ce-0b54-45f6-a7d4-dd3e035e517f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:00 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5461a903-99db-4b3b-a1fb-197325921d28"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "74e54883-8a8b-4c2e-8bf5-deab7f15b23d"
+ ],
+ "x-ms-correlation-request-id": [
+ "74e54883-8a8b-4c2e-8bf5-deab7f15b23d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050204Z:74e54883-8a8b-4c2e-8bf5-deab7f15b23d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "214"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps2813' under resource group 'ps3045' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "909772de-4d3d-4089-a568-4b74e989abbe"
+ ],
+ "x-ms-correlation-request-id": [
+ "178bbaa6-5212-4f98-8f00-33a6ee6b3cd3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "51c24bbd-16dc-4a02-a7d3-8c5a61355136"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050207Z:178bbaa6-5212-4f98-8f00-33a6ee6b3cd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:06 GMT"
+ ],
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813\",\r\n \"etag\": \"W/\\\"74a514ef-aa8a-40bf-9988-00ea41631cf4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90de34dc-71ed-4160-9059-77064734c015"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9b64fe3c-c83f-473b-b53c-0f1bdc21e696"
+ ],
+ "x-ms-correlation-request-id": [
+ "76ad7d57-778c-47ec-83b2-ebf299fa6e92"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cb2a8f81-4ff0-4631-8087-1ca5c31872b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051839Z:76ad7d57-778c-47ec-83b2-ebf299fa6e92"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:39 GMT"
+ ],
+ "Content-Length": [
+ "602"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813\",\r\n \"etag\": \"W/\\\"d38f6ea4-3f49-472f-aeee-12d2c101512e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6934dcde-0f38-41de-bf7e-79eb69e70cf7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0c1ab5b9-cab0-476a-9b1c-d9fc6e0b58ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6249039-1a3e-47d6-b000-4cd9289c1825"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d0ee0214-956d-4273-b50f-f05bf77ec4b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051840Z:f6249039-1a3e-47d6-b000-4cd9289c1825"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:39 GMT"
+ ],
+ "Content-Length": [
+ "602"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813\",\r\n \"etag\": \"W/\\\"d38f6ea4-3f49-472f-aeee-12d2c101512e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4bec50d-9fce-42f6-96c4-049f8795ac1f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "05ace934-8a58-4093-9e3f-bd4db0eac17d"
+ ],
+ "x-ms-correlation-request-id": [
+ "0069d65a-3d09-425e-af86-126250e6ee1b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9b3198ad-b08d-496d-9d60-aa2a3a5cac76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052003Z:0069d65a-3d09-425e-af86-126250e6ee1b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:03 GMT"
+ ],
+ "Content-Length": [
+ "602"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813\",\r\n \"etag\": \"W/\\\"0ec69029-b348-4948-9840-0aed88c9ec18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38187a2b-b1fd-4f83-a7d1-cba65d126def"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f7ce508f-1211-4067-ad5d-6bd701fb6a36"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe334478-ceac-4453-b29a-d70ebdcd6174"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1c596ec0-13d8-41ad-8767-1e7ec1f0e8b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052244Z:fe334478-ceac-4453-b29a-d70ebdcd6174"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:44 GMT"
+ ],
+ "Content-Length": [
+ "602"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813\",\r\n \"etag\": \"W/\\\"a94b7fa6-4a46-4aa0-bb67-4e625ab4714b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c2e6b7e-9056-4cf2-843d-90a427722865"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "176"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0b377664-c630-4bcb-b436-aa56fdf0ec9e"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/0b377664-c630-4bcb-b436-aa56fdf0ec9e?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "14b77d9e-fa6e-4ecb-b0d0-96ab3a7c8e96"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "44c169b2-6244-43f7-91c4-1a3690a654c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050207Z:14b77d9e-fa6e-4ecb-b0d0-96ab3a7c8e96"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:06 GMT"
+ ],
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813\",\r\n \"etag\": \"W/\\\"74a514ef-aa8a-40bf-9988-00ea41631cf4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e8eb3212-124e-4b06-8556-56e9956e95db"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "205"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "bb77e828-24c9-4315-8e43-c74fc1527c4c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4f4259a-77dc-4ead-8964-415bbe2a3121"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e7615b71-3265-4094-a998-51c7194b8b3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050208Z:e4f4259a-77dc-4ead-8964-415bbe2a3121"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:07 GMT"
+ ],
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4ac55f45-3d3c-4e33-85d6-5177c7614b06\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f32866a4-beb8-47c9-ab32-aff3b9521f83"
+ ],
+ "x-ms-correlation-request-id": [
+ "e33655f0-b374-4a82-9367-913b5b1b8c17"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c3bd1aa9-1c0a-42c3-83fa-9b5d4d339372"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050218Z:e33655f0-b374-4a82-9367-913b5b1b8c17"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "10d4ea24-e1ba-4c1b-82d0-8bca67834564"
+ ],
+ "x-ms-correlation-request-id": [
+ "41bb4b73-bb94-4895-938e-582dd7a88275"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fb94a3f2-47ae-4c50-a651-0e3b694f49cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050228Z:41bb4b73-bb94-4895-938e-582dd7a88275"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "1ae41956-1a2d-40c9-b332-1db81185d6f8"
+ ],
+ "x-ms-correlation-request-id": [
+ "75ec06ba-62fe-4676-97ed-b965299bad2d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2733c1a2-6a9f-4abb-bace-d99a8e3ebe49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050249Z:75ec06ba-62fe-4676-97ed-b965299bad2d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:02:48 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "1525a191-01df-4f7f-b1e5-6fac186d5239"
+ ],
+ "x-ms-correlation-request-id": [
+ "8506c784-97af-45ea-929e-f8b0988d396f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8c297e03-7cf2-4d11-884d-6e095fbe7a17"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050329Z:8506c784-97af-45ea-929e-f8b0988d396f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:03:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "4eff0365-9fea-4f9c-83a0-0c91a65c4908"
+ ],
+ "x-ms-correlation-request-id": [
+ "f577cf80-c0ab-4064-9f72-c3d4cd044030"
+ ],
+ "x-ms-arm-service-request-id": [
+ "82686c37-4452-44ae-a793-1055dc1052d7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050509Z:f577cf80-c0ab-4064-9f72-c3d4cd044030"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:05:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "5c700888-e188-463b-aa88-c213cc46566c"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f044c3a-5077-441f-af4d-549f9bbf0f14"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8c8e3a53-4b03-4091-ab80-adb7476bb0e9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050650Z:3f044c3a-5077-441f-af4d-549f9bbf0f14"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:06:49 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "4b166516-9da3-477d-af7d-da5e22555ab8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b4706ae-53e9-40bf-b657-e1784c5589c2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "84ddf32c-c814-4683-b111-833a000c051f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T050830Z:9b4706ae-53e9-40bf-b657-e1784c5589c2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:08:30 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "a8bda559-e25b-45b2-98e2-6724b68adeaf"
+ ],
+ "x-ms-correlation-request-id": [
+ "79757ab2-205b-4ede-9ca2-86bce2450dde"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b5358574-1261-4556-88f5-fd211a2435ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051010Z:79757ab2-205b-4ede-9ca2-86bce2450dde"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:10:10 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "9e5b780e-a288-495e-b680-068c5e6f82aa"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfbde4d7-babd-480a-882b-a6fe05912ee7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "371ab3f2-e61e-4393-b252-9ce1dbde9cbe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051152Z:cfbde4d7-babd-480a-882b-a6fe05912ee7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:11:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "0a71ca0f-b75d-4963-89f7-982ddfeab85a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2708cc5-1454-4a82-8da7-04834d81e574"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5f6a0866-4d16-4ab7-958d-3701085a0924"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051334Z:d2708cc5-1454-4a82-8da7-04834d81e574"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:13:33 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "c70bfab0-79fd-4fea-90af-9bb4d455ec3e"
+ ],
+ "x-ms-correlation-request-id": [
+ "f046c241-f2b9-4d12-a49c-40e2185cbe3f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "67d047ea-407d-4238-8267-e36363a3845f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051514Z:f046c241-f2b9-4d12-a49c-40e2185cbe3f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:15:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "0afcea09-b187-4098-b730-0387840dae5c"
+ ],
+ "x-ms-correlation-request-id": [
+ "0caab606-6bc7-4618-ba28-2b5dde1437a6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "035c4be1-c524-45b6-8bab-f30d87df00f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051654Z:0caab606-6bc7-4618-ba28-2b5dde1437a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:16:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/bb77e828-24c9-4315-8e43-c74fc1527c4c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JiNzdlODI4LTI0YzktNDMxNS04ZTQzLWM3NGZjMTUyN2M0Yz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e0e9f927-2f74-4be0-97ff-de231a6b98c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "ead5596b-58d2-4bc2-b8fb-1a90ba695cdd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "92adbc39-6d92-41ae-bf75-e48406374d2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051838Z:ead5596b-58d2-4bc2-b8fb-1a90ba695cdd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:38 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d38f6ea4-3f49-472f-aeee-12d2c101512e\""
+ ],
+ "x-ms-request-id": [
+ "06377eb7-22df-4df6-9010-41d40ca531a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb89e617-d9ab-485a-a2c0-a4bec4f14d1c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "bcedf77f-6caf-4ae7-bfca-1b5cbf0e8415"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051839Z:fb89e617-d9ab-485a-a2c0-a4bec4f14d1c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:38 GMT"
+ ],
+ "Content-Length": [
+ "591"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d38f6ea4-3f49-472f-aeee-12d2c101512e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b1f164ba-1f81-4965-96ae-081a6f4b2154"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d38f6ea4-3f49-472f-aeee-12d2c101512e\""
+ ],
+ "x-ms-request-id": [
+ "780b170f-0e62-455d-afbe-e75fdcb1c7bc"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f99a7e3-5e43-4712-bbed-3e0bf82d3f57"
+ ],
+ "x-ms-arm-service-request-id": [
+ "56f64b16-08c5-4344-aca1-9a4cd83dcefd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051840Z:7f99a7e3-5e43-4712-bbed-3e0bf82d3f57"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:39 GMT"
+ ],
+ "Content-Length": [
+ "591"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d38f6ea4-3f49-472f-aeee-12d2c101512e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48ed43df-330b-40a0-82fe-725451a943bf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d38f6ea4-3f49-472f-aeee-12d2c101512e\""
+ ],
+ "x-ms-request-id": [
+ "fb57abac-2763-4443-b51b-f855be516ff2"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c9f3ade-3ca7-4f94-a902-f408896b04c0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cc989bf2-cead-4d3b-9f54-dc8e8c25a2b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051844Z:1c9f3ade-3ca7-4f94-a902-f408896b04c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:44 GMT"
+ ],
+ "Content-Length": [
+ "591"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d38f6ea4-3f49-472f-aeee-12d2c101512e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6e7c25bd-d1de-4c8e-b876-1bcfbcd0b2b4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"0ec69029-b348-4948-9840-0aed88c9ec18\""
+ ],
+ "x-ms-request-id": [
+ "ea222c86-215c-4180-8a58-5fc15524edd7"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ad6ce16-fc3a-4227-8f0d-7882cc70bb6e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fb4a35ef-c20e-468b-be4a-80bf357e1f31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052004Z:4ad6ce16-fc3a-4227-8f0d-7882cc70bb6e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:03 GMT"
+ ],
+ "Content-Length": [
+ "591"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0ec69029-b348-4948-9840-0aed88c9ec18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1aaa66f7-02f1-4ff1-8ef9-a5feb0e3e05a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"a94b7fa6-4a46-4aa0-bb67-4e625ab4714b\""
+ ],
+ "x-ms-request-id": [
+ "3e6ad223-e7d7-437b-804a-a8268916c378"
+ ],
+ "x-ms-correlation-request-id": [
+ "607ee4a4-fac1-4183-bab3-abfb11969d23"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7f51feec-2fe0-4c6f-b818-5edf0ce7d506"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052244Z:607ee4a4-fac1-4183-bab3-abfb11969d23"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:44 GMT"
+ ],
+ "Content-Length": [
+ "591"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a94b7fa6-4a46-4aa0-bb67-4e625ab4714b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualNetworks/ps5215/subnets/ps43\"\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7cb753c8-d8df-47d8-a7b7-7f4ea30c1372"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "88c5d175-b167-4d62-8cdf-61b72531dd95"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8f723d5-421b-4c90-bc5e-c7aa6742985d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4ea19116-0131-4b21-acd8-24bd8e855461"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051844Z:e8f723d5-421b-4c90-bc5e-c7aa6742985d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:44 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86ac3048-cb92-4ae0-b49c-d25b8835e3a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "39297c70-cddf-44c3-950f-00e8113de143"
+ ],
+ "x-ms-correlation-request-id": [
+ "394abe7e-21ba-4eec-a761-ec54485102d6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "140953f9-758c-427b-882c-515c9c32e9ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052003Z:394abe7e-21ba-4eec-a761-ec54485102d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:03 GMT"
+ ],
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps620\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620\",\r\n \"etag\": \"W/\\\"0ec69029-b348-4948-9840-0aed88c9ec18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bf76938d-faee-4706-b55c-b7eef8aceade"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3224f169-8e75-4317-99e0-3171c5f2e483"
+ ],
+ "x-ms-correlation-request-id": [
+ "78efb22f-3e69-4cac-9470-de7a6e4d01b0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a3e114e1-a008-4879-8cb5-187ed8457c36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052244Z:78efb22f-3e69-4cac-9470-de7a6e4d01b0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:44 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zL3BzNjIwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "939236fd-399c-4b2a-a112-063157bb7b45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "856f382e-d8e6-41c5-ad0e-f82975037d9d"
+ ],
+ "x-ms-correlation-request-id": [
+ "60bfa5f1-867b-4884-8446-ccf7ec092834"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4bc0d1f7-dede-4d90-a5a5-5b1073aa9466"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051845Z:60bfa5f1-867b-4884-8446-ccf7ec092834"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:44 GMT"
+ ],
+ "Content-Length": [
+ "248"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620 not found.\",\r\n \"details\": []\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zL3BzNjIwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"0ec69029-b348-4948-9840-0aed88c9ec18\""
+ ],
+ "x-ms-request-id": [
+ "a3adca25-23c6-41c6-b342-452da13c28bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "36c7e424-bc71-4583-9e61-e42fc71a877f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4ad6f8d1-1b9d-4ad3-82bd-2d7cdb577c88"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052003Z:36c7e424-bc71-4583-9e61-e42fc71a877f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:03 GMT"
+ ],
+ "Content-Length": [
+ "409"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps620\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620\",\r\n \"etag\": \"W/\\\"0ec69029-b348-4948-9840-0aed88c9ec18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zL3BzNjIwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aae4dcc0-5dca-4949-ad31-2a6a1663ba42"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"0ec69029-b348-4948-9840-0aed88c9ec18\""
+ ],
+ "x-ms-request-id": [
+ "ad80c388-cceb-4cdf-81f6-b9d1f90d2656"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d86ea39-7b00-4a4e-95bc-410abedab3fa"
+ ],
+ "x-ms-arm-service-request-id": [
+ "20bd2300-ab46-4649-a159-e6963fe6784a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052004Z:0d86ea39-7b00-4a4e-95bc-410abedab3fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:04 GMT"
+ ],
+ "Content-Length": [
+ "409"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps620\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620\",\r\n \"etag\": \"W/\\\"0ec69029-b348-4948-9840-0aed88c9ec18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zL3BzNjIwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20000,\r\n \"peerIp\": \"192.168.1.5\"\r\n },\r\n \"name\": \"ps620\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2d7fa06-0d6b-47cc-a4e5-483616fbb59a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "100"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "eed18c39-6c8b-41e8-9983-cd704b71e8da"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/eed18c39-6c8b-41e8-9983-cd704b71e8da?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "734418c6-40be-48dd-b482-acbe4a69f686"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4cd92558-acd1-487b-80ee-d2cd20a11462"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051847Z:734418c6-40be-48dd-b482-acbe4a69f686"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:46 GMT"
+ ],
+ "Content-Length": [
+ "408"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps620\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620\",\r\n \"etag\": \"W/\\\"a313fa88-800a-40d4-8d9b-5941bbf7736d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/eed18c39-6c8b-41e8-9983-cd704b71e8da?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2VlZDE4YzM5LTZjOGItNDFlOC05OTgzLWNkNzA0YjcxZThkYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "2bf00cf1-4b07-4b1f-aa32-6e9bfa18325b"
+ ],
+ "x-ms-correlation-request-id": [
+ "174c66e5-e4b3-499b-b4b6-13dc1db0444c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9ddb67cd-1b3c-4dd9-b562-879f1b54e9c6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051858Z:174c66e5-e4b3-499b-b4b6-13dc1db0444c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:18:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/eed18c39-6c8b-41e8-9983-cd704b71e8da?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2VlZDE4YzM5LTZjOGItNDFlOC05OTgzLWNkNzA0YjcxZThkYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "498c3ef6-1501-4569-9de4-2f432267ec54"
+ ],
+ "x-ms-correlation-request-id": [
+ "94df9eff-72fc-46e8-a73c-e3f242ec10f7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "38722307-1dbe-4205-821b-5a12384c837c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T051923Z:94df9eff-72fc-46e8-a73c-e3f242ec10f7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:19:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/eed18c39-6c8b-41e8-9983-cd704b71e8da?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2VlZDE4YzM5LTZjOGItNDFlOC05OTgzLWNkNzA0YjcxZThkYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "44ada111-4ded-4c9a-90ae-6910034effa4"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc2139c5-ab9e-4bfb-8bd3-300f97f9cd61"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e762113f-ac41-4cfb-a15d-28dc35ab50cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052003Z:cc2139c5-ab9e-4bfb-8bd3-300f97f9cd61"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:03 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/bgpConnections/ps620?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2JncENvbm5lY3Rpb25zL3BzNjIwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3cba55f5-243f-487f-bd22-679d3ebe7e62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c50ab579-c0f9-4881-9268-fe3ffafde68b"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6c5b423-565d-4eb8-bf9b-60b62e10fc19"
+ ],
+ "x-ms-arm-service-request-id": [
+ "aaddba0e-b3b1-49dc-8d80-d59fc026c563"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052005Z:d6c5b423-565d-4eb8-bf9b-60b62e10fc19"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:05 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M1MGFiNTc5LWMwZjktNDg4MS05MjY4LWZlM2ZmYWZkZTY4Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "d597a1fe-c060-408c-b25a-ddf7dbbc631f"
+ ],
+ "x-ms-correlation-request-id": [
+ "b20dd70e-e864-415f-aa92-736c550e2f4b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0401f1cd-d6db-436c-9741-e7ef0fe5e296"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052019Z:b20dd70e-e864-415f-aa92-736c550e2f4b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M1MGFiNTc5LWMwZjktNDg4MS05MjY4LWZlM2ZmYWZkZTY4Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "46d80a95-cd47-4cec-a750-4516fca63198"
+ ],
+ "x-ms-correlation-request-id": [
+ "e41fb0f6-2d9e-41c2-9243-d0874aa3aae5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9d05062c-cf5c-4b86-8e4c-22dbbdfe7b4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052039Z:e41fb0f6-2d9e-41c2-9243-d0874aa3aae5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:20:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M1MGFiNTc5LWMwZjktNDg4MS05MjY4LWZlM2ZmYWZkZTY4Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "80"
+ ],
+ "x-ms-request-id": [
+ "1b86b349-9e1b-4543-b53b-03269f986b9c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2fb2862c-a6ea-47d6-8fea-6f712d575b0d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b6db848d-fd33-4a78-af90-f8e343e96660"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052119Z:2fb2862c-a6ea-47d6-8fea-6f712d575b0d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:21:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M1MGFiNTc5LWMwZjktNDg4MS05MjY4LWZlM2ZmYWZkZTY4Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5b5a7262-65a4-4063-8c5d-406232efabd5"
+ ],
+ "x-ms-correlation-request-id": [
+ "fdea2806-bd52-4105-b423-21017a990c7f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fb617e44-a65c-4113-9804-c4413d4067e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052239Z:fdea2806-bd52-4105-b423-21017a990c7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:38 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2M1MGFiNTc5LWMwZjktNDg4MS05MjY4LWZlM2ZmYWZkZTY4Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01"
+ ],
+ "x-ms-request-id": [
+ "c50ab579-c0f9-4881-9268-fe3ffafde68b"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/c50ab579-c0f9-4881-9268-fe3ffafde68b?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6c5b423-565d-4eb8-bf9b-60b62e10fc19"
+ ],
+ "x-ms-arm-service-request-id": [
+ "aaddba0e-b3b1-49dc-8d80-d59fc026c563"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052244Z:2cd30dc7-d5b8-4b30-9085-17807fdf4f15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813/ipConfigurations/ipconfig1?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzL2lwQ29uZmlndXJhdGlvbnMvaXBjb25maWcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c809330-655c-44c0-927f-2f1f0d411531"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "952c0ec8-512a-468b-8dd4-55e08288ff8f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4f73b35-c97d-4fe1-ab23-8a993c92cdbb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f0d8ac6b-482d-4f96-8b99-76667fd5b318"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052245Z:a4f73b35-c97d-4fe1-ab23-8a993c92cdbb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk1MmMwZWM4LTUxMmEtNDY4Yi04ZGQ0LTU1ZTA4Mjg4ZmY4Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "20e2b4a3-e307-4b82-9121-8e5d4de3f25f"
+ ],
+ "x-ms-correlation-request-id": [
+ "42ce2674-3ca3-497b-a388-953d4e478606"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1d3a4aa6-db35-4603-b6ad-024bd4d8f411"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052255Z:42ce2674-3ca3-497b-a388-953d4e478606"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:22:55 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk1MmMwZWM4LTUxMmEtNDY4Yi04ZGQ0LTU1ZTA4Mjg4ZmY4Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "40"
+ ],
+ "x-ms-request-id": [
+ "4ac03f50-0441-4848-8442-4df7527a7647"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba15d503-b1c7-414f-a527-5ee24e74c2e0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1fe07636-4285-490b-9075-6011b03d5c2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052316Z:ba15d503-b1c7-414f-a527-5ee24e74c2e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:23:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk1MmMwZWM4LTUxMmEtNDY4Yi04ZGQ0LTU1ZTA4Mjg4ZmY4Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "80"
+ ],
+ "x-ms-request-id": [
+ "77599749-b382-41b5-9db5-5253b9167a69"
+ ],
+ "x-ms-correlation-request-id": [
+ "37b5de6c-fe21-4e98-bf5e-1adb18f59841"
+ ],
+ "x-ms-arm-service-request-id": [
+ "910250d8-357c-485a-8fdc-342a2bf0fed6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052356Z:37b5de6c-fe21-4e98-bf5e-1adb18f59841"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:23:56 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk1MmMwZWM4LTUxMmEtNDY4Yi04ZGQ0LTU1ZTA4Mjg4ZmY4Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "100"
+ ],
+ "x-ms-request-id": [
+ "d7e5212f-0169-4448-821e-04ac81e3e867"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5c44b5c-f322-4c70-aff1-cbda90681db8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "24c1fcb3-2f23-42b4-a040-5a138071e018"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052516Z:d5c44b5c-f322-4c70-aff1-cbda90681db8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:25:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk1MmMwZWM4LTUxMmEtNDY4Yi04ZGQ0LTU1ZTA4Mjg4ZmY4Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0a3c19f4-a84c-4eff-a3af-63582417d407"
+ ],
+ "x-ms-correlation-request-id": [
+ "df74ad6d-5944-4810-99f6-1c9decea367b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f5a0ac4d-4f95-48d4-9983-952bc84603ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052659Z:df74ad6d-5944-4810-99f6-1c9decea367b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:26:59 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzk1MmMwZWM4LTUxMmEtNDY4Yi04ZGQ0LTU1ZTA4Mjg4ZmY4Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01"
+ ],
+ "x-ms-request-id": [
+ "952c0ec8-512a-468b-8dd4-55e08288ff8f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/952c0ec8-512a-468b-8dd4-55e08288ff8f?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4f73b35-c97d-4fe1-ab23-8a993c92cdbb"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f0d8ac6b-482d-4f96-8b99-76667fd5b318"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052659Z:14af493f-84e9-433b-83bd-e9ae61b6a480"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:26:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs/ps2813?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "163dbae9-030f-45db-9a2d-e49ffa4ebf5a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/701f4748-bac2-479e-9c05-9918df7d995d?api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "701f4748-bac2-479e-9c05-9918df7d995d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/701f4748-bac2-479e-9c05-9918df7d995d?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa0e4638-3ced-488f-8745-fc01d5a60529"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b63eeff1-1787-496d-8377-d45d1422e67f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052700Z:aa0e4638-3ced-488f-8745-fc01d5a60529"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:26:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/701f4748-bac2-479e-9c05-9918df7d995d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzcwMWY0NzQ4LWJhYzItNDc5ZS05YzA1LTk5MThkZjdkOTk1ZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f9f685d9-88bb-4dc6-a129-d0e2d9b9d8b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "c135f72f-d4df-41de-88f0-f11be82bf834"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2cb8a1c2-833f-4a38-b2e6-7f5307dc7c4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052711Z:c135f72f-d4df-41de-88f0-f11be82bf834"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:10 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/701f4748-bac2-479e-9c05-9918df7d995d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzcwMWY0NzQ4LWJhYzItNDc5ZS05YzA1LTk5MThkZjdkOTk1ZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "701f4748-bac2-479e-9c05-9918df7d995d"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa0e4638-3ced-488f-8745-fc01d5a60529"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b63eeff1-1787-496d-8377-d45d1422e67f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052711Z:acfff10a-d4d6-4501-9118-56905edcf49a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps3045/providers/Microsoft.Network/virtualHubs?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzMzA0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d1487b66-4254-4b0d-88ee-2bbd283bfb23"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "70d9da3d-97fd-4bc7-a6a3-800fffd2399a"
+ ],
+ "x-ms-correlation-request-id": [
+ "16a45ac6-63e1-4b7c-9952-d35fb497f7ae"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f7da6128-bcc0-40e9-aac8-fdcd31d6e5b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052711Z:16a45ac6-63e1-4b7c-9952-d35fb497f7ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:11 GMT"
+ ],
+ "Content-Length": [
+ "19"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourcegroups/ps3045?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlZ3JvdXBzL3BzMzA0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2edca92a-222b-45c6-b344-a4b0a7aca3fa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "c5110106-2550-4870-90ae-333bf12bf843"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5110106-2550-4870-90ae-333bf12bf843"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052714Z:c5110106-2550-4870-90ae-333bf12bf843"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:14 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "18537d61-ab31-4cba-9b03-49716eb03d54"
+ ],
+ "x-ms-correlation-request-id": [
+ "18537d61-ab31-4cba-9b03-49716eb03d54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052729Z:18537d61-ab31-4cba-9b03-49716eb03d54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "d94ef91d-e2b9-46a9-b449-dd8d7c31fb9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d94ef91d-e2b9-46a9-b449-dd8d7c31fb9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052744Z:d94ef91d-e2b9-46a9-b449-dd8d7c31fb9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "23304e07-454f-4055-aef5-57a0c786bf12"
+ ],
+ "x-ms-correlation-request-id": [
+ "23304e07-454f-4055-aef5-57a0c786bf12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052800Z:23304e07-454f-4055-aef5-57a0c786bf12"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:27:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "95b0e6e3-4e15-4737-8d17-77ffcf491ba2"
+ ],
+ "x-ms-correlation-request-id": [
+ "95b0e6e3-4e15-4737-8d17-77ffcf491ba2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052815Z:95b0e6e3-4e15-4737-8d17-77ffcf491ba2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:28:14 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "017eaa78-ba56-47df-ac39-226c3e8649ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "017eaa78-ba56-47df-ac39-226c3e8649ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052831Z:017eaa78-ba56-47df-ac39-226c3e8649ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:28:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "fbcc6a67-2c51-42fc-ab0b-b80e256f6eec"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbcc6a67-2c51-42fc-ab0b-b80e256f6eec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052846Z:fbcc6a67-2c51-42fc-ab0b-b80e256f6eec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:28:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "f57ef3a3-2df4-427a-b385-fa13beff2856"
+ ],
+ "x-ms-correlation-request-id": [
+ "f57ef3a3-2df4-427a-b385-fa13beff2856"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052905Z:f57ef3a3-2df4-427a-b385-fa13beff2856"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:29:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28928.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "d5613708-3e13-46c4-9df8-b59c4b7f4b51"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5613708-3e13-46c4-9df8-b59c4b7f4b51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200804T052907Z:d5613708-3e13-46c4-9df8-b59c4b7f4b51"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2020 05:29:06 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-VirtualRouterPeerCRUD": [
+ "ps3045",
+ "ps5215",
+ "ps2813",
+ "ps4065",
+ "ps43",
+ "ps620"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "8c992d64-fce9-426d-b278-85642dfeab03"
+ }
+}
diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1
index 0569d428d2ec..ce697cb96250 100644
--- a/src/Network/Network/Az.Network.psd1
+++ b/src/Network/Network/Az.Network.psd1
@@ -399,8 +399,12 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Remove-AzVirtualHub', 'Set-AzVirtualHub', 'New-AzVirtualHubRoute',
'Add-AzVirtualHubRoute', 'New-AzVirtualHubRouteTable',
'Add-AzVirtualHubRouteTable', 'Get-AzVirtualHubRouteTable',
- 'Remove-AzVirtualHubRouteTable', 'New-AzVpnGateway',
+ 'Remove-AzVirtualHubRouteTable', 'New-AzVpnGateway', 'Reset-AzVpnGateway',
'Get-AzVpnGateway', 'Update-AzVpnGateway', 'Remove-AzVpnGateway',
+ 'Start-AzVpnGatewayPacketCapture',
+ 'Stop-AzVpnGatewayPacketCapture',
+ 'Start-AzVpnConnectionPacketCapture',
+ 'Stop-AzVpnConnectionPacketCapture',
'New-AzVpnSite', 'New-AzVpnSiteLink', 'New-AzVpnSiteLinkConnection',
'Get-AzVpnSite', 'Update-AzVpnSite', 'Remove-AzVpnSite',
'New-AzVpnConnection', 'Get-AzVpnConnection',
@@ -414,7 +418,7 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Get-AzP2sVpnGatewayConnectionHealth',
'Get-AzP2sVpnGatewayDetailedConnectionHealth',
'Get-AzP2sVpnGatewayVpnProfile', 'New-AzP2sVpnGateway',
- 'Remove-AzP2sVpnGateway', 'Update-AzP2sVpnGateway',
+ 'Remove-AzP2sVpnGateway', 'Update-AzP2sVpnGateway', 'Reset-AzP2sVpnGateway',
'Get-AzVirtualWanVpnConfiguration', 'Get-AzFirewall',
'Set-AzFirewall', 'New-AzFirewall', 'Remove-AzFirewall',
'New-AzFirewallApplicationRuleCollection',
@@ -496,7 +500,10 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'New-AzVirtualApplianceSite', 'Remove-AzVirtualApplianceSite',
'Update-AzVirtualApplianceSite', 'New-AzOffice365PolicyProperty',
'Get-AzNetworkVirtualApplianceSku',
- 'New-AzVirtualApplianceSkuProperty'
+ 'New-AzVirtualApplianceSkuProperty',
+ 'New-AzCustomIpPrefix', 'Update-AzCustomIpPrefix',
+ 'Get-AzCustomIpPrefix', 'Remove-AzCustomIpPrefix'
+
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs
index f80a91c31be4..501208caa6ba 100644
--- a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs
+++ b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs
@@ -220,6 +220,12 @@ public class NewAzureFirewallCommand : AzureFirewallBaseCmdlet
HelpMessage = "The firewall policy attached to the firewall")]
public string FirewallPolicyId { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Allow Active FTP. By default it is false."
+ )]
+ public SwitchParameter AllowActiveFTP { get; set; }
+
public override void Execute()
{
// Old params provided - Get the virtual network, get the public IP address
@@ -310,6 +316,7 @@ private PSAzureFirewall CreateAzureFirewall()
DNSEnableProxy = (this.EnableDnsProxy.IsPresent? "true" : null),
DNSRequireProxyForNetworkRules = (this.DnsProxyNotRequiredForNetworkRule.IsPresent ? "false" : null),
DNSServer = this.DnsServer,
+ AllowActiveFTP = (this.AllowActiveFTP.IsPresent ? "true" : null),
Sku = sku
};
diff --git a/src/Network/Network/BYOIP/CustomIpPrefix/CustomIpPrefixBaseCmdlet.cs b/src/Network/Network/BYOIP/CustomIpPrefix/CustomIpPrefixBaseCmdlet.cs
new file mode 100644
index 000000000000..d7566500d63b
--- /dev/null
+++ b/src/Network/Network/BYOIP/CustomIpPrefix/CustomIpPrefixBaseCmdlet.cs
@@ -0,0 +1,52 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+ using Microsoft.Azure.Management.Network;
+ using Microsoft.Azure.Management.Network.Models;
+ using System.Net;
+
+ public abstract class CustomIpPrefixBaseCmdlet : NetworkBaseCmdlet
+ {
+ public ICustomIPPrefixesOperations CustomIpPrefixClient
+ {
+ get
+ {
+ return NetworkClient.NetworkManagementClient.CustomIPPrefixes;
+ }
+ }
+
+ public PSCustomIpPrefix GetCustomIpPrefix(string resourceGroupName, string name, string expandResource = null)
+ {
+ var sdkModel = this.CustomIpPrefixClient.Get(resourceGroupName, name, expandResource);
+
+ var psModel = ToPsCustomIpPrefix(sdkModel);
+ psModel.ResourceGroupName = resourceGroupName;
+
+ return psModel;
+ }
+
+ public PSCustomIpPrefix ToPsCustomIpPrefix(CustomIpPrefix customIpPrefix)
+ {
+ var psModel = NetworkResourceManagerProfile.Mapper.Map(customIpPrefix);
+
+ psModel.Tag = TagsConversionHelper.CreateTagHashtable(customIpPrefix.Tags);
+
+ return psModel;
+ }
+ }
+}
diff --git a/src/Network/Network/BYOIP/CustomIpPrefix/GetAzureCustomIpPrefixCommand.cs b/src/Network/Network/BYOIP/CustomIpPrefix/GetAzureCustomIpPrefixCommand.cs
new file mode 100644
index 000000000000..9efaa748a400
--- /dev/null
+++ b/src/Network/Network/BYOIP/CustomIpPrefix/GetAzureCustomIpPrefixCommand.cs
@@ -0,0 +1,113 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+ using Microsoft.Azure.Management.Network;
+ using System.Collections.Generic;
+ using System.Management.Automation;
+ using Microsoft.Azure.Management.Network.Models;
+ using Microsoft.Rest.Azure;
+ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+ using Microsoft.WindowsAzure.Commands.Utilities.Common;
+ using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+
+ [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CustomIpPrefix", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(PSCustomIpPrefix))]
+ public class GetAzureCustomIpPrefixCommand : CustomIpPrefixBaseCmdlet
+ {
+ private const string GetByNameParameterSet = "GetByNameParameterSet";
+ private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet";
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.",
+ ParameterSetName = GetByNameParameterSet)]
+ [ResourceNameCompleter("Microsoft.Network/customIpPrefix", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ [SupportsWildcards]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.",
+ ParameterSetName = GetByNameParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ [SupportsWildcards]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource id.",
+ ParameterSetName = GetByResourceIdParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceId { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+
+ if (this.IsParameterBound(c => c.ResourceId))
+ {
+ var resourceIdentifier = new ResourceIdentifier(this.ResourceId);
+ this.ResourceGroupName = resourceIdentifier.ResourceGroupName;
+ this.Name = resourceIdentifier.ResourceName;
+ }
+
+ if (ShouldGetByName(this.ResourceGroupName, this.Name))
+ {
+ PSCustomIpPrefix psModel;
+
+ psModel = this.GetCustomIpPrefix(this.ResourceGroupName, this.Name);
+
+ WriteObject(psModel);
+ }
+ else
+ {
+ IPage page;
+ if (ShouldListByResourceGroup(this.ResourceGroupName, this.Name))
+ {
+ page = this.CustomIpPrefixClient.List(this.ResourceGroupName);
+ }
+ else
+ {
+ page = this.CustomIpPrefixClient.ListAll();
+ }
+
+ // Get all resources by polling on next page link
+ List sdkModelList;
+
+ sdkModelList = ListNextLink.GetAllResourcesByPollingNextLink(page, this.CustomIpPrefixClient.ListNext);
+
+ var psModelList = new List();
+
+ // populate the publicIpPrefixes with the ResourceGroupName
+ foreach (var sdkModel in sdkModelList)
+ {
+ var psModel = this.ToPsCustomIpPrefix(sdkModel);
+ psModel.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(psModel.Id);
+ psModelList.Add(psModel);
+ }
+
+ WriteObject(TopLevelWildcardFilter(this.ResourceGroupName, this.Name, psModelList), true);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/BYOIP/CustomIpPrefix/NewAzureCustomIpPrefixCommand.cs b/src/Network/Network/BYOIP/CustomIpPrefix/NewAzureCustomIpPrefixCommand.cs
new file mode 100644
index 000000000000..63afddc7253a
--- /dev/null
+++ b/src/Network/Network/BYOIP/CustomIpPrefix/NewAzureCustomIpPrefixCommand.cs
@@ -0,0 +1,119 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+ using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+ using Microsoft.Azure.Management.Network;
+ using System.Collections;
+ using System.Linq;
+ using System.Management.Automation;
+ using MNM = Microsoft.Azure.Management.Network.Models;
+
+ [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CustomIpPrefix", SupportsShouldProcess = true), OutputType(typeof(PSCustomIpPrefix))]
+ public class NewAzureCustomIpPrefixCommand : CustomIpPrefixBaseCmdlet
+ {
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The customIpPrefix location.")]
+ [LocationCompleter("Microsoft.Network/customIpPrefix")]
+ [ValidateNotNullOrEmpty]
+ public string Location { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The customIpPrefix CIDR.")]
+ [ValidateNotNullOrEmpty]
+ public string Cidr { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "A list of availability zones denoting the IP allocated for the resource needs to come from.",
+ ValueFromPipelineByPropertyName = true)]
+ public string[] Zone { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A hashtable which represents resource tags.")]
+ public Hashtable Tag { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ var resourceExists = IsResourcePresent(() => GetCustomIpPrefix(this.ResourceGroupName, this.Name));
+
+ if (resourceExists)
+ {
+ throw new System.Exception(string.Format("A CustomIpPrefix with name '{0}' in resource group '{1}' already exists. Please use Set-AzCustomIpPrefix to update an existing CustomIpPrefix.", this.Name, this.ResourceGroupName));
+ }
+
+ var psModel = CreateCustomIpPrefix();
+ if (psModel != null)
+ {
+ WriteObject(psModel);
+ }
+ }
+
+ private PSCustomIpPrefix CreateCustomIpPrefix()
+ {
+ var psModel = new PSCustomIpPrefix()
+ {
+ Name = this.Name,
+ ResourceGroupName = this.ResourceGroupName,
+ Location = this.Location,
+ Cidr = this.Cidr,
+ Zones = this.Zone?.ToList()
+ };
+
+ var sdkModel = NetworkResourceManagerProfile.Mapper.Map(psModel);
+
+ sdkModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+
+ if (this.ShouldProcess($"Name: {this.Name} ResourceGroup: {this.ResourceGroupName}", "Create new MasterCustomIpPrefix"))
+ {
+ this.CustomIpPrefixClient.CreateOrUpdate(this.ResourceGroupName, this.Name, sdkModel);
+
+ var customIpPrefix = this.GetCustomIpPrefix(this.ResourceGroupName, this.Name);
+
+ return customIpPrefix;
+ }
+
+ return null;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/BYOIP/CustomIpPrefix/RemoveAzureCustomIpPrefixCommand.cs b/src/Network/Network/BYOIP/CustomIpPrefix/RemoveAzureCustomIpPrefixCommand.cs
new file mode 100644
index 000000000000..e2d522db9b9f
--- /dev/null
+++ b/src/Network/Network/BYOIP/CustomIpPrefix/RemoveAzureCustomIpPrefixCommand.cs
@@ -0,0 +1,112 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+ using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+ using Microsoft.Azure.Management.Network;
+ using Microsoft.WindowsAzure.Commands.Utilities.Common;
+ using System.Management.Automation;
+
+ [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CustomIpPrefix", SupportsShouldProcess = true, DefaultParameterSetName = DeleteByNameParameterSet), OutputType(typeof(bool))]
+ public class RemoveAzureCustomIpPrefixCommand : CustomIpPrefixBaseCmdlet
+ {
+ private const string DeleteByNameParameterSet = "DeleteByNameParameterSet";
+ private const string DeleteByInputObjectParameterSet = "DeleteByInputObjectParameterSet";
+ private const string DeleteByResourceIdParameterSet = "DeleteByResourceIdParameterSet";
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.",
+ ParameterSetName = DeleteByNameParameterSet)]
+ [ResourceNameCompleter("Microsoft.Network/customIpPrefix", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.",
+ ParameterSetName = DeleteByNameParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource id.",
+ ParameterSetName = DeleteByResourceIdParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "A customIpPrefix object.",
+ ParameterSetName = DeleteByInputObjectParameterSet)]
+ [ValidateNotNull]
+ public PSCustomIpPrefix InputObject { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation.")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false)]
+ public SwitchParameter PassThru { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+
+ if (this.IsParameterBound(c => c.InputObject))
+ {
+ this.ResourceGroupName = this.InputObject.ResourceGroupName;
+ this.Name = this.InputObject.Name;
+ }
+
+ if (this.IsParameterBound(c => c.ResourceId))
+ {
+ var resourceIdentifier = new ResourceIdentifier(this.ResourceId);
+ this.ResourceGroupName = resourceIdentifier.ResourceGroupName;
+ this.Name = resourceIdentifier.ResourceName;
+ }
+
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.RemovingResource, Name),
+ Microsoft.Azure.Commands.Network.Properties.Resources.RemoveResourceMessage,
+ Name,
+ () =>
+ {
+ if (this.ShouldProcess(this.Name, $"Deleting CustomIpPrefix: {this.Name} in ResourceGroup: {this.ResourceGroupName}"))
+ {
+ this.CustomIpPrefixClient.Delete(this.ResourceGroupName, this.Name);
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ }
+ });
+ }
+ }
+}
diff --git a/src/Network/Network/BYOIP/CustomIpPrefix/UpdateAzureCustomIpPrefixCommand.cs b/src/Network/Network/BYOIP/CustomIpPrefix/UpdateAzureCustomIpPrefixCommand.cs
new file mode 100644
index 000000000000..a69b15d86a84
--- /dev/null
+++ b/src/Network/Network/BYOIP/CustomIpPrefix/UpdateAzureCustomIpPrefixCommand.cs
@@ -0,0 +1,145 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+ using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+ using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+ using Microsoft.Azure.Management.Network;
+ using Microsoft.WindowsAzure.Commands.Utilities.Common;
+ using System;
+ using System.Collections;
+ using System.Management.Automation;
+ using MNM = Microsoft.Azure.Management.Network.Models;
+
+ [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CustomIpPrefix", SupportsShouldProcess = true, DefaultParameterSetName = UpdateByNameParameterSet), OutputType(typeof(PSCustomIpPrefix))]
+ public class UpdateAzureCustomIpPrefixCommand : CustomIpPrefixBaseCmdlet
+ {
+ private const string UpdateByNameParameterSet = "UpdateByNameParameterSet";
+ private const string UpdateByInputObjectParameterSet = "UpdateByInputObjectParameterSet";
+ private const string UpdateByResourceIdParameterSet = "UpdateByResourceIdParameterSet";
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.", ParameterSetName = UpdateByNameParameterSet)]
+ [ResourceNameCompleter("Microsoft.Network/customIpPrefix", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ [SupportsWildcards]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.", ParameterSetName = UpdateByNameParameterSet)]
+ [ValidateNotNullOrEmpty]
+ [SupportsWildcards]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The CustomIpPrefix to set.", ParameterSetName = UpdateByInputObjectParameterSet)]
+ public PSCustomIpPrefix InputObject { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource Id.", ParameterSetName = UpdateByResourceIdParameterSet)]
+ [ValidateNotNullOrEmpty]
+ [SupportsWildcards]
+ public virtual string ResourceId { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter Commission { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter Decomission { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A hashtable which represents resource tags.",
+ ParameterSetName = UpdateByNameParameterSet)]
+ [Parameter(Mandatory = false, ParameterSetName = UpdateByResourceIdParameterSet)]
+ [Parameter(Mandatory = false, ParameterSetName = UpdateByInputObjectParameterSet)]
+ public Hashtable Tag { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+
+ if (this.IsParameterBound(c => c.ResourceId))
+ {
+ var resourceInfo = new ResourceIdentifier(ResourceId);
+ this.ResourceGroupName = resourceInfo.ResourceGroupName;
+ this.Name = resourceInfo.ResourceName;
+ }
+ else if (this.IsParameterBound(c => c.InputObject))
+ {
+ this.ResourceGroupName = InputObject.ResourceGroupName;
+ this.Name = InputObject.Name;
+ }
+
+ var existingResourcePsModel = GetCustomIpPrefix(this.ResourceGroupName, this.Name);
+ if (existingResourcePsModel == null)
+ {
+ throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound);
+ }
+
+ if (Commission && Decomission)
+ {
+ throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.CommissioningStateConflict);
+ }
+
+ PSCustomIpPrefix customIpPrefixToUpdate = this.GetCustomIpPrefix(this.ResourceGroupName, this.Name);
+
+ if (customIpPrefixToUpdate == null)
+ {
+ throw new PSArgumentException(Properties.Resources.ResourceNotFound, this.Name);
+ }
+
+ if (Commission || Decomission)
+ {
+ customIpPrefixToUpdate.CommissionedState = Commission ? "Commissioning" : "Decomissioning";
+ }
+
+ var sdkModel = NetworkResourceManagerProfile.Mapper.Map(customIpPrefixToUpdate);
+
+ if (this.IsParameterBound(c => c.InputObject))
+ {
+ sdkModel.Tags = TagsConversionHelper.CreateTagDictionary(this.IsParameterBound(c => c.Tag) ? this.Tag : InputObject.Tag, validate: true);
+ }
+ else
+ {
+ sdkModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+ }
+
+ if (this.ShouldProcess($"Name: {this.Name} ResourceGroup: {this.ResourceGroupName}", "Update existing CustomIpPrefix"))
+ {
+ // Execute the PUT MasterCustomIpPrefix Policy call
+ this.CustomIpPrefixClient.CreateOrUpdate(this.ResourceGroupName, this.Name, sdkModel);
+
+ var customIpPrefix = this.GetCustomIpPrefix(this.ResourceGroupName, this.Name);
+
+ WriteObject(customIpPrefix);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md
index 6aeaea9bef27..a88ceb47a48d 100644
--- a/src/Network/Network/ChangeLog.md
+++ b/src/Network/Network/ChangeLog.md
@@ -19,6 +19,19 @@
--->
## Upcoming Release
+* [Breaking Change] Updated below cmdlets to align resource virtual router and virtual hub
+ - `New-AzVirtualRouter`:
+ - Added -HostedSubnet parameter to support IP configuration child resource
+ - deleted -HostedGateway and -HostedGatewayId
+ - `Get-AzVirtualRouter`:
+ - Added subcription level parameter set
+ - `Remove-AzVirtualRouter`
+ - `Add-AzVirtualRouterPeer`
+ - `Get-AzVirtualRouterPeer`
+ - `Remove-AzVirtualRouterPeer`
+* Added RemoteBgpCommunities property to the VirtualNetwork Peering Resource
+* Modified the warning message for `New-AzLoadBalancerFrontendIpConfig`, `New-AzPublicIpAddress` and `New-AzPublicIpPrefix`.
+* Added VpnGatewayIpConfigurations to `Get-AzVpnGateway` output
* Bug fix for Set-AzApplicationGatewaySslCertificate (https://github.com/Azure/azure-powershell/issues/9488)
## Version 3.3.0
@@ -42,9 +55,22 @@
- `Update-AzNetworkVirtualAppliance`
- `Get-AzNetworkVirtualApplianceSku`
- `New-AzVirtualApplianceSkuProperty`
+* Added new cmdlets for VirtualWan
+ - `Start-AzVpnGatewayPacketCapture`
+ - `Stop-AzVpnGatewayPacketCapture`
+ - `Start-AzVpnConnectionPacketCapture`
+ - `Stop-AzVpnConnectionPacketCapture`
+* Onboard Application Gateway to Private Link Common Cmdlets
+* Onboard StorageSync to Private Link Common Cmdlets
+* Add `AllowActiveFTP` parameter to `AzureFirewall`
* Onboarded Application Gateway to Private Link Common Cmdlets
* Onboarded StorageSync to Private Link Common Cmdlets
* Onboarded SignalR to Private Link Common Cmdlets
+* Updated below commands for feature: Enable internet security set/remove on VirtualWan P2SVpnGateway.
+- Updated `New-AzP2sVpnGateway`: Added optional switch parameter `EnableInternetSecurityFlag` for customers to set true to enable internet security on P2SVpnGateway, which will be applied for Point to site clients.
+- Updated `Update-AzP2sVpnGateway`: Added optional switch parameters `EnableInternetSecurityFlag` or `DisableInternetSecurityFlag` for customers to set true/false to enable/disable internet security on P2SVpnGateway, which will be applied for Point to site clients.
+* Added new cmdlet `Reset-AzP2sVpnGateway` for customers to reset/reboot their VirtualWan P2SVpnGateway for troubleshooting.
+* Added new cmdlet `Reset-AzVpnGateway` for customers to reset/reboot their VirtualWan VpnGateway for troubleshooting.
## Version 3.1.0
* Added support for AddressPrefixType parameter to `Remove-AzExpressRouteCircuitConnectionConfig`
diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
index 65cdf7fd0c0d..5d74ab93eafd 100644
--- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs
+++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
@@ -23,6 +23,7 @@ namespace Microsoft.Azure.Commands.Network
using CNM = Microsoft.Azure.Commands.Network.Models;
using MNM = Microsoft.Azure.Management.Network.Models;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
+ using Microsoft.Azure.Commands.Network.Models;
public class NetworkResourceManagerProfile : Profile
{
@@ -89,38 +90,7 @@ private static void MapSecurityRuleManagementToCommand(MnmType
cnmProp.SetValue(cnmObj, list);
}
}
- }
-
- public class VirtualRouterConverter : ITypeConverter
- {
- public CNM.PSVirtualRouter Convert(MNM.VirtualRouter source, CNM.PSVirtualRouter destination, ResolutionContext context)
- {
- var router = new CNM.PSVirtualRouter()
- {
- Id = source.Id,
- Name = source.Name,
- Etag = source.Etag,
- Location = source.Location,
- Type = source.Type,
- ProvisioningState = source.ProvisioningState,
- VirtualRouterAsn = (uint)source.VirtualRouterAsn
- };
- if (source.HostedGateway != null)
- {
- router.HostedGateway = new CNM.PSResourceId()
- {
- Id = source.HostedGateway.Id
- };
- }
- if (source.VirtualRouterIps != null)
- {
- router.VirtualRouterIps = source.VirtualRouterIps.ToList();
- }
-
- router.Peerings = new List();
- return router;
- }
- }
+ }
private static void MapSecurityRuleCommandToManagement(CnmType cnmObj, MnmType mnmObj)
{
@@ -424,6 +394,13 @@ private static void Initialize()
cfg.CreateMap();
cfg.CreateMap();
+ // CustomIpPrefix
+ // CNM to MNM
+ cfg.CreateMap();
+
+ // MNM to CNM
+ cfg.CreateMap();
+
// NetworkInterface
// CNM to MNM
cfg.CreateMap();
@@ -1111,6 +1088,7 @@ private static void Initialize()
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
+ cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
@@ -1144,6 +1122,7 @@ private static void Initialize()
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
+ cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap().AfterMap((src, dest) =>
{
@@ -1232,6 +1211,7 @@ private static void Initialize()
{ "ThreatIntel.Whitelist.FQDNs", src.ThreatIntelWhitelist?.FQDNs?.Aggregate((result, item) => result + "," + item) },
{ "ThreatIntel.Whitelist.IpAddresses", src.ThreatIntelWhitelist?.IpAddresses?.Aggregate((result, item) => result + "," + item) },
{ "Network.SNAT.PrivateRanges", src.PrivateRange?.Aggregate((result, item) => result + "," + item) },
+ { "Network.FTP.AllowActiveFTP", src.AllowActiveFTP },
{ "Network.DNS.EnableProxy", src.DNSEnableProxy },
{ "Network.DNS.RequireProxyForNetworkRules", src.DNSRequireProxyForNetworkRules },
{ "Network.DNS.Servers", src.DNSServer?.Aggregate((result, item) => result + "," + item) }
@@ -1279,6 +1259,7 @@ private static void Initialize()
{
dest.PrivateRange = null;
}
+ dest.AllowActiveFTP = src.AdditionalProperties?.SingleOrDefault(kvp => kvp.Key.Equals("Network.FTP.AllowActiveFTP", StringComparison.OrdinalIgnoreCase)).Value;
dest.DNSEnableProxy = src.AdditionalProperties?.SingleOrDefault(kvp => kvp.Key.Equals("Network.DNS.EnableProxy", StringComparison.OrdinalIgnoreCase)).Value;
dest.DNSRequireProxyForNetworkRules = src.AdditionalProperties?.SingleOrDefault(kvp => kvp.Key.Equals("Network.DNS.RequireProxyForNetworkRules", StringComparison.OrdinalIgnoreCase)).Value;
try
@@ -1376,11 +1357,13 @@ private static void Initialize()
// Virtual Router
// CNM to MNM
cfg.CreateMap();
- cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
// MNM to CNM
- cfg.CreateMap().ConvertUsing(new VirtualRouterConverter());
- cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
// IpGroup
cfg.CreateMap();
diff --git a/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs
index 3fe3427ef48f..183bb1abbc08 100644
--- a/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs
+++ b/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs
@@ -142,6 +142,11 @@ public class NewAzureRmP2SVpnGatewayCommand : P2SVpnGatewayBaseCmdlet
HelpMessage = "The routing configuration for this P2SVpnGateway P2SConnectionConfiguration")]
public PSRoutingConfiguration RoutingConfiguration { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable internet security feature on this P2SVpnGateway P2SConnectionConfiguration.")]
+ public SwitchParameter EnableInternetSecurityFlag { get; set; }
+
[Parameter(
Mandatory = false,
HelpMessage = "A hashtable which represents resource tags.")]
@@ -203,7 +208,8 @@ public override void Execute()
VpnClientAddressPool = new PSAddressSpace()
{
AddressPrefixes = new List(this.VpnClientAddressPool)
- }
+ },
+ EnableInternetSecurity = this.EnableInternetSecurityFlag.IsPresent
};
if (this.RoutingConfiguration != null)
diff --git a/src/Network/Network/Cortex/P2SVpnGateway/ResetAzureP2SVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/ResetAzureP2SVpnGatewayCommand.cs
new file mode 100644
index 000000000000..990934e61f66
--- /dev/null
+++ b/src/Network/Network/Cortex/P2SVpnGateway/ResetAzureP2SVpnGatewayCommand.cs
@@ -0,0 +1,106 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using AutoMapper;
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Reset",
+ ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "P2sVpnGateway",
+ DefaultParameterSetName = CortexParameterSetNames.ByP2SVpnGatewayName,
+ SupportsShouldProcess = true),
+ OutputType(typeof(PSP2SVpnGateway))]
+ public class ResetAzureP2SVpnGatewayCommand : P2SVpnGatewayBaseCmdlet
+ {
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByP2SVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Alias("ResourceName", "P2SVpnGatewayName", "GatewayName")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByP2SVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The p2s vpn gateway name.")]
+ [ResourceNameCompleter("Microsoft.Network/p2sVpnGateways", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Alias("P2SVpnGateway")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByP2SVpnGatewayObject,
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The p2s vpn gateway to reset")]
+ [ValidateNotNullOrEmpty]
+ public PSP2SVpnGateway InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByP2SVpnGatewayResourceId,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Azure resource ID of the P2SVpnGateway to reset.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ PSP2SVpnGateway existingVpnGateway = null;
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByP2SVpnGatewayObject))
+ {
+ existingVpnGateway = this.InputObject;
+ this.ResourceGroupName = this.InputObject.ResourceGroupName;
+ this.Name = this.InputObject.Name;
+ }
+ else
+ {
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByP2SVpnGatewayResourceId))
+ {
+ var parsedResourceId = new ResourceIdentifier(ResourceId);
+ Name = parsedResourceId.ResourceName;
+ ResourceGroupName = parsedResourceId.ResourceGroupName;
+ }
+
+ existingVpnGateway = this.GetP2SVpnGateway(this.ResourceGroupName, this.Name);
+ }
+
+ if (existingVpnGateway == null)
+ {
+ throw new PSArgumentException(Properties.Resources.P2SVpnGatewayNotFound);
+ }
+
+ string shouldProcessMessage = string.Format("Execute {0}P2sVpnGateway for ResourceGroupName {1} P2SVpnGateway {2}", ResourceManager.Common.AzureRMConstants.AzureRMPrefix, this.ResourceGroupName, this.Name);
+ if (ShouldProcess(shouldProcessMessage, VerbsCommon.Reset))
+ {
+ this.P2SVpnGatewayClient.Reset(this.ResourceGroupName, this.Name);
+
+ var getVpnGateway = this.GetP2SVpnGateway(this.ResourceGroupName, this.Name);
+ WriteObject(getVpnGateway);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs
index dce902aaba1d..b21809ffb1fd 100644
--- a/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs
+++ b/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs
@@ -163,6 +163,16 @@ public class UpdateAzureRmP2SVpnGatewayCommand : P2SVpnGatewayBaseCmdlet
HelpMessage = "The routing configuration for this P2SVpnGateway P2SConnectionConfiguration")]
public PSRoutingConfiguration RoutingConfiguration { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable internet security feature on this P2SVpnGateway P2SConnectionConfiguration.")]
+ public SwitchParameter EnableInternetSecurityFlag { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to disable internet security feature on this P2SVpnGateway P2SConnectionConfiguration.")]
+ public SwitchParameter DisableInternetSecurityFlag { get; set; }
+
[Parameter(
Mandatory = false,
HelpMessage = "A hashtable which represents resource tags.")]
@@ -206,28 +216,42 @@ public override void Execute()
}
//// Modify the P2SConnectionConfigurations
- if (this.VpnClientAddressPool != null)
+ if (existingP2SVpnGateway.P2SConnectionConfigurations == null || !existingP2SVpnGateway.P2SConnectionConfigurations.Any())
{
- if (existingP2SVpnGateway.P2SConnectionConfigurations != null && existingP2SVpnGateway.P2SConnectionConfigurations.Any())
- {
- existingP2SVpnGateway.P2SConnectionConfigurations[0].VpnClientAddressPool.AddressPrefixes.Clear();
- existingP2SVpnGateway.P2SConnectionConfigurations[0].VpnClientAddressPool.AddressPrefixes = new List(this.VpnClientAddressPool);
- }
- else
+ PSP2SConnectionConfiguration p2sConnectionConfig = new PSP2SConnectionConfiguration()
{
- PSP2SConnectionConfiguration p2sConnectionConfig = new PSP2SConnectionConfiguration()
+ Name = P2SConnectionConfigurationName,
+ VpnClientAddressPool = new PSAddressSpace()
{
- Name = P2SConnectionConfigurationName,
- VpnClientAddressPool = new PSAddressSpace()
- {
- AddressPrefixes = new List(this.VpnClientAddressPool)
- }
- };
- existingP2SVpnGateway.P2SConnectionConfigurations = new List()
+ AddressPrefixes = new List()
+ }
+ };
+
+ existingP2SVpnGateway.P2SConnectionConfigurations = new List()
{
p2sConnectionConfig
};
- }
+ }
+
+ if (this.VpnClientAddressPool != null)
+ {
+ existingP2SVpnGateway.P2SConnectionConfigurations[0].VpnClientAddressPool.AddressPrefixes.Clear();
+ existingP2SVpnGateway.P2SConnectionConfigurations[0].VpnClientAddressPool.AddressPrefixes = new List(this.VpnClientAddressPool);
+ }
+
+ if (this.EnableInternetSecurityFlag.IsPresent && this.DisableInternetSecurityFlag.IsPresent)
+ {
+ throw new ArgumentException("Both EnableInternetSecurityFlag and DisableInternetSecurityFlag Parameters can not be passed.");
+ }
+
+ if (this.EnableInternetSecurityFlag.IsPresent)
+ {
+ existingP2SVpnGateway.P2SConnectionConfigurations[0].EnableInternetSecurity = true;
+ }
+
+ if (this.DisableInternetSecurityFlag.IsPresent)
+ {
+ existingP2SVpnGateway.P2SConnectionConfigurations[0].EnableInternetSecurity = false;
}
if (this.RoutingConfiguration != null)
@@ -237,22 +261,7 @@ public override void Execute()
throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration);
}
- if (existingP2SVpnGateway.P2SConnectionConfigurations != null && existingP2SVpnGateway.P2SConnectionConfigurations.Any())
- {
- existingP2SVpnGateway.P2SConnectionConfigurations[0].RoutingConfiguration = RoutingConfiguration;
- }
- else
- {
- PSP2SConnectionConfiguration p2sConnectionConfig = new PSP2SConnectionConfiguration()
- {
- Name = P2SConnectionConfigurationName,
- RoutingConfiguration = RoutingConfiguration
- };
- existingP2SVpnGateway.P2SConnectionConfigurations = new List()
- {
- p2sConnectionConfig
- };
- }
+ existingP2SVpnGateway.P2SConnectionConfigurations[0].RoutingConfiguration = RoutingConfiguration;
}
// Set the custom dns servers, if it is specified by customer.
diff --git a/src/Network/Network/Cortex/VirtualHub/NewAzureRmVirtualHubCommand.cs b/src/Network/Network/Cortex/VirtualHub/NewAzureRmVirtualHubCommand.cs
index e00951da3596..2ecda462eea1 100644
--- a/src/Network/Network/Cortex/VirtualHub/NewAzureRmVirtualHubCommand.cs
+++ b/src/Network/Network/Cortex/VirtualHub/NewAzureRmVirtualHubCommand.cs
@@ -14,19 +14,12 @@
namespace Microsoft.Azure.Commands.Network
{
- using AutoMapper;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Management.Automation;
- using System.Security;
using Microsoft.Azure.Commands.Network.Models;
- using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
- using Microsoft.Azure.Management.Network;
- using Microsoft.WindowsAzure.Commands.Common;
- using MNM = Microsoft.Azure.Management.Network.Models;
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
- using System.Linq;
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
diff --git a/src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs
new file mode 100644
index 000000000000..6143fffdf9c7
--- /dev/null
+++ b/src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs
@@ -0,0 +1,159 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Network.Models;
+using Microsoft.Azure.Commands.Network.Models.Cortex;
+using System.Linq;
+
+namespace Microsoft.Azure.Commands.Network.Cortex.VpnConnection
+{
+ [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnConnectionPacketCapture",
+ DefaultParameterSetName = CortexParameterSetNames.ByVpnConnectionName
+ , SupportsShouldProcess = true)
+ , OutputType(typeof(PSVpnConnectionPacketCaptureResult))]
+ public class StartAzVpnConnectionPacketCaptureCommand : VpnConnectionBaseCmdlet
+ {
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionName,
+ Mandatory = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Alias("ParentVpnGatewayName", "VpnGatewayName")]
+ [Parameter(
+ Mandatory = true,
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionName,
+ HelpMessage = "The parent Vpn Gateway resource name.")]
+ [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string ParentResourceName { get; set; }
+
+ [Alias("ResourceName", "VpnConnectionName", "ConnectionName")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionName,
+ Mandatory = true,
+ HelpMessage = "The Vpn connection name where packet capture to be started.")]
+ [ResourceNameCompleter("Microsoft.Network/vpnGateways/vpnConnections", "ResourceGroupName", "ParentResourceName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Alias("VpnConnection")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionObject,
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The Vpn connection object where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public PSVpnConnection InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionResourceId,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Azure resource ID of the VpnConnection where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Filter options for start packet capture on Vpn connection.")]
+ public string FilterData { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "VpnSiteLink Name of Vpn Connection to start packet capture on Vpn connection.")]
+ public string LinkConnectionName { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionName, StringComparison.OrdinalIgnoreCase))
+ {
+ this.ResourceGroupName = this.ResourceGroupName;
+ this.ParentResourceName = this.ParentResourceName;
+ this.Name = this.Name;
+ }
+ else if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionObject, StringComparison.OrdinalIgnoreCase))
+ {
+ this.ResourceId = this.InputObject.Id;
+
+ if (string.IsNullOrWhiteSpace(this.ResourceId))
+ {
+ throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound);
+ }
+
+ var parsedResourceId = new ResourceIdentifier(this.ResourceId);
+ this.ResourceGroupName = parsedResourceId.ResourceGroupName;
+ this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last();
+ this.Name = parsedResourceId.ResourceName;
+ }
+
+ //// Get the vpngateway object - this will throw not found if the object is not found
+ PSVpnGateway parentGateway = this.GetVpnGateway(this.ResourceGroupName, this.ParentResourceName);
+
+ if (parentGateway == null ||
+ parentGateway.Connections == null ||
+ !parentGateway.Connections.Any(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase)))
+ {
+ throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound);
+ }
+
+ var existingConnection = parentGateway.Connections.FirstOrDefault(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase));
+
+ VpnConnectionPacketCaptureStartParameters parameters = new VpnConnectionPacketCaptureStartParameters();
+
+ if (this.FilterData != null)
+ {
+ parameters.FilterData = FilterData;
+ }
+
+ if (this.LinkConnectionName != null)
+ {
+ parameters.LinkConnectionNames = LinkConnectionName.Split(',').Select(x => x.Trim()).ToList();
+ }
+
+ base.Execute();
+
+ if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)))
+ {
+ WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name));
+ PSVpnConnectionPacketCaptureResult output = new PSVpnConnectionPacketCaptureResult()
+ {
+ Name = existingConnection.Name,
+ ResourceGroupName = parentGateway.ResourceGroupName,
+ Tag = parentGateway.Tag,
+ ResourceGuid = existingConnection.Id,
+ Location = parentGateway.Location,
+ LinkConnectionName = this.LinkConnectionName
+ };
+ output.StartTime = DateTime.UtcNow;
+ var result = this.VpnConnectionClient.StartPacketCapture(this.ResourceGroupName, ParentResourceName, this.Name, parameters);
+ output.EndTime = DateTime.UtcNow;
+ WriteObject(output);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs
new file mode 100644
index 000000000000..0882d486e2f6
--- /dev/null
+++ b/src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs
@@ -0,0 +1,154 @@
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Network.Models;
+using Microsoft.Azure.Commands.Network.Models.Cortex;
+using System.Linq;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnConnectionPacketCapture",
+ DefaultParameterSetName = CortexParameterSetNames.ByVpnConnectionName, SupportsShouldProcess = true), OutputType(typeof(PSVpnConnectionPacketCaptureResult))]
+ public class StopAzVpnConnectionPacketCaptureCommand : VpnConnectionBaseCmdlet
+ {
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionName,
+ Mandatory = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Alias("ParentVpnGatewayName", "VpnGatewayName")]
+ [Parameter(
+ Mandatory = true,
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionName,
+ HelpMessage = "The parent resource name.")]
+ [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string ParentResourceName { get; set; }
+
+ [Alias("ResourceName", "ConnectionName")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionName,
+ Mandatory = true,
+ HelpMessage = "The Vpn connection name where packet capture is to be started.")]
+ [ResourceNameCompleter("Microsoft.Network/connections", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Alias("VpnConnection")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionObject,
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The Vpn connection object where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public PSVpnConnection InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnConnectionResourceId,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Azure resource ID of the VpnConnection where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "VpnSiteLink of Vpn Connection to start packet capture on Vpn connection.")]
+ public string LinkConnectionName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "SAS Url for stop packet capture on Vpn.")]
+ public string SasUrl { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionName, StringComparison.OrdinalIgnoreCase))
+ {
+ this.ResourceGroupName = this.ResourceGroupName;
+ this.ParentResourceName = this.ParentResourceName;
+ this.Name = this.Name;
+ }
+ else if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionObject, StringComparison.OrdinalIgnoreCase))
+ {
+ this.ResourceId = this.InputObject.Id;
+
+ if (string.IsNullOrWhiteSpace(this.ResourceId))
+ {
+ throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound);
+ }
+
+ var parsedResourceId = new ResourceIdentifier(this.ResourceId);
+ this.ResourceGroupName = parsedResourceId.ResourceGroupName;
+ this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last();
+ this.Name = parsedResourceId.ResourceName;
+ }
+
+ //// Get the vpngateway object - this will throw not found if the object is not found
+ PSVpnGateway parentGateway = this.GetVpnGateway(this.ResourceGroupName, this.ParentResourceName);
+
+ if (parentGateway == null ||
+ parentGateway.Connections == null ||
+ !parentGateway.Connections.Any(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase)))
+ {
+ throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound);
+ }
+
+ VpnConnectionPacketCaptureStopParameters parameters = new VpnConnectionPacketCaptureStopParameters();
+
+ if (this.SasUrl != null)
+ {
+ parameters.SasUrl = SasUrl;
+ }
+ if (this.LinkConnectionName != null)
+ {
+ parameters.LinkConnectionNames = LinkConnectionName.Split(',').Select(x => x.Trim()).ToList();
+ }
+
+ var existingConnection = parentGateway.Connections.FirstOrDefault(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase));
+
+ base.Execute();
+
+ if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)))
+ {
+ WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name));
+ PSVpnConnectionPacketCaptureResult output = new PSVpnConnectionPacketCaptureResult()
+ {
+ Name = existingConnection.Name,
+ ResourceGroupName = parentGateway.ResourceGroupName,
+ Tag = parentGateway.Tag,
+ ResourceGuid = existingConnection.Id,
+ Location = parentGateway.Location,
+ LinkConnectionName = this.LinkConnectionName
+ };
+ output.StartTime = DateTime.UtcNow;
+ var result = this.VpnConnectionClient.StopPacketCapture(this.ResourceGroupName, ParentResourceName, this.Name, parameters);
+ output.EndTime = DateTime.UtcNow;
+ WriteObject(output);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/Cortex/VpnGateway/ResetAzureVpnGatewayCommand.cs b/src/Network/Network/Cortex/VpnGateway/ResetAzureVpnGatewayCommand.cs
new file mode 100644
index 000000000000..2c011bd0eff7
--- /dev/null
+++ b/src/Network/Network/Cortex/VpnGateway/ResetAzureVpnGatewayCommand.cs
@@ -0,0 +1,105 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using AutoMapper;
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Reset",
+ ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnGateway",
+ DefaultParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ SupportsShouldProcess = true),
+ OutputType(typeof(PSVpnGateway))]
+ public class ResetAzureVpnGatewayCommand : VpnGatewayBaseCmdlet
+ {
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Alias("ResourceName", "VpnGatewayName", "GatewayName")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The vpn gateway name.")]
+ [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Alias("VpnGateway")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayObject,
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The vpn gateway to reset")]
+ [ValidateNotNullOrEmpty]
+ public PSVpnGateway InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayResourceId,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Azure resource ID of the VpnGateway to reset.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ PSVpnGateway existingVpnGateway = null;
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayObject))
+ {
+ existingVpnGateway = this.InputObject;
+ this.ResourceGroupName = this.InputObject.ResourceGroupName;
+ this.Name = this.InputObject.Name;
+ }
+ else
+ {
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayResourceId))
+ {
+ var parsedResourceId = new ResourceIdentifier(ResourceId);
+ Name = parsedResourceId.ResourceName;
+ ResourceGroupName = parsedResourceId.ResourceGroupName;
+ }
+
+ existingVpnGateway = this.GetVpnGateway(this.ResourceGroupName, this.Name);
+ }
+
+ if (existingVpnGateway == null)
+ {
+ throw new PSArgumentException(Properties.Resources.VpnGatewayNotFound);
+ }
+ string shouldProcessMessage = string.Format("Execute {0}VpnGateway for ResourceGroupName {1} VpnGateway {2}", ResourceManager.Common.AzureRMConstants.AzureRMPrefix, this.ResourceGroupName, this.Name);
+ if (ShouldProcess(shouldProcessMessage, VerbsCommon.Reset))
+ {
+ this.VpnGatewayClient.Reset(this.ResourceGroupName, this.Name);
+
+ var getVpnGateway = this.GetVpnGateway(this.ResourceGroupName, this.Name);
+ WriteObject(getVpnGateway);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs
new file mode 100644
index 000000000000..267bc78885e4
--- /dev/null
+++ b/src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs
@@ -0,0 +1,111 @@
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.Network.Models.Cortex;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Network.Cortex.VpnGateway
+{
+ [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnGatewayPacketCapture",
+ DefaultParameterSetName = CortexParameterSetNames.ByVpnGatewayName, SupportsShouldProcess = true), OutputType(typeof(PSVpnGatewayPacketCaptureResult))]
+ public class StartAzVpnGatewayPacketCaptureCommand : VpnGatewayBaseCmdlet
+ {
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Alias("ResourceName", "VpnGatewayName", "GatewayName")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The vpn gateway name where packet capture is to be started.")]
+ [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Alias("VpnGateway")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayObject,
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The vpn gateway object where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public PSVpnGateway InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayResourceId,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Azure resource ID of the VirtualNetworkGateway where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Filter options for start packet capture on vpn gateway.")]
+ public string FilterData { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ PSVpnGateway existingVpnGateway = null;
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayObject))
+ {
+ existingVpnGateway = this.InputObject;
+ this.ResourceGroupName = this.InputObject.ResourceGroupName;
+ this.Name = this.InputObject.Name;
+ }
+ else
+ {
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayResourceId))
+ {
+ var parsedResourceId = new ResourceIdentifier(ResourceId);
+ Name = parsedResourceId.ResourceName;
+ ResourceGroupName = parsedResourceId.ResourceGroupName;
+ }
+
+ existingVpnGateway = this.GetVpnGateway(this.ResourceGroupName, this.Name);
+ }
+
+ if (existingVpnGateway == null)
+ {
+ throw new PSArgumentException(Properties.Resources.VpnGatewayNotFound);
+ }
+
+ VpnGatewayPacketCaptureStartParameters parameters = new VpnGatewayPacketCaptureStartParameters();
+ if (this.FilterData != null)
+ {
+ parameters.FilterData = FilterData;
+ }
+
+ base.Execute();
+ if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)))
+ {
+ WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name));
+ PSVpnGatewayPacketCaptureResult output = new PSVpnGatewayPacketCaptureResult()
+ {
+ Name = existingVpnGateway.Name,
+ ResourceGroupName = existingVpnGateway.ResourceGroupName,
+ Tag = existingVpnGateway.Tag,
+ ResourceGuid = existingVpnGateway.ResourceGuid,
+ Location = existingVpnGateway.Location,
+ };
+ output.StartTime = DateTime.UtcNow;
+ var result = this.VpnGatewayClient.StartPacketCapture(this.ResourceGroupName, this.Name, parameters);
+ output.EndTime = DateTime.UtcNow;
+ WriteObject(output);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs
new file mode 100644
index 000000000000..001e63b2312d
--- /dev/null
+++ b/src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs
@@ -0,0 +1,111 @@
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.Network.Models.Cortex;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Network.Cortex.VpnGateway
+{
+ [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnGatewayPacketCapture",
+ DefaultParameterSetName = CortexParameterSetNames.ByVpnGatewayName, SupportsShouldProcess = true), OutputType(typeof(PSVpnGatewayPacketCaptureResult))]
+ public class StopAzVpnGatewayPacketCaptureCommand : VpnGatewayBaseCmdlet
+ {
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Alias("ResourceName", "VpnGatewayName", "GatewayName")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayName,
+ Mandatory = true,
+ HelpMessage = "The vpn gateway name where packet capture to be started.")]
+ [ResourceNameCompleter("Microsoft.Network/VpnGateways", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Alias("VpnGateway")]
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayObject,
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The vpn gateway object where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public PSVpnGateway InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = CortexParameterSetNames.ByVpnGatewayResourceId,
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Azure resource ID of the VpnGateway where packet capture to be started.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "SAS URL packet capture on vpn gateway.")]
+ public string SasUrl { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ PSVpnGateway existingVpnGateway = null;
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayObject))
+ {
+ existingVpnGateway = this.InputObject;
+ this.ResourceGroupName = this.InputObject.ResourceGroupName;
+ this.Name = this.InputObject.Name;
+ }
+ else
+ {
+ if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayResourceId))
+ {
+ var parsedResourceId = new ResourceIdentifier(ResourceId);
+ Name = parsedResourceId.ResourceName;
+ ResourceGroupName = parsedResourceId.ResourceGroupName;
+ }
+
+ existingVpnGateway = this.GetVpnGateway(this.ResourceGroupName, this.Name);
+ }
+
+ if (existingVpnGateway == null)
+ {
+ throw new PSArgumentException(Properties.Resources.VpnGatewayNotFound);
+ }
+
+ VpnGatewayPacketCaptureStopParameters parameters = new VpnGatewayPacketCaptureStopParameters();
+ if (this.SasUrl != null)
+ {
+ parameters.SasUrl = SasUrl;
+ }
+
+ base.Execute();
+ if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)))
+ {
+ WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name));
+ PSVpnGatewayPacketCaptureResult output = new PSVpnGatewayPacketCaptureResult()
+ {
+ Name = existingVpnGateway.Name,
+ ResourceGroupName = existingVpnGateway.ResourceGroupName,
+ Tag = existingVpnGateway.Tag,
+ ResourceGuid = existingVpnGateway.ResourceGuid,
+ Location = existingVpnGateway.Location,
+ };
+ output.StartTime = DateTime.UtcNow;
+ var result = this.VpnGatewayClient.StopPacketCapture(this.ResourceGroupName, this.Name, parameters);
+ output.EndTime = DateTime.UtcNow;
+ WriteObject(output);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/Generated/Models/PSBgpConnection.cs b/src/Network/Network/Generated/Models/PSBgpConnection.cs
new file mode 100644
index 000000000000..764bc9b2cd24
--- /dev/null
+++ b/src/Network/Network/Generated/Models/PSBgpConnection.cs
@@ -0,0 +1,14 @@
+using Microsoft.WindowsAzure.Commands.Common.Attributes;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public partial class PSBgpConnection : PSChildResource
+ {
+ [Ps1Xml(Target = ViewControl.Table)]
+ public uint PeerAsn { get; set; }
+ [Ps1Xml(Target = ViewControl.Table)]
+ public string PeerIp { get; set; }
+ [Ps1Xml(Target = ViewControl.Table)]
+ public string ProvisioningState { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/Generated/Models/PSHubIpConfiguration.cs b/src/Network/Network/Generated/Models/PSHubIpConfiguration.cs
new file mode 100644
index 000000000000..f1a78acfda78
--- /dev/null
+++ b/src/Network/Network/Generated/Models/PSHubIpConfiguration.cs
@@ -0,0 +1,12 @@
+using Microsoft.WindowsAzure.Commands.Common.Attributes;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public partial class PSHubIpConfiguration : PSChildResource
+ {
+ [Ps1Xml(Target = ViewControl.Table)]
+ public string HostedSubnet { get; set; }
+ [Ps1Xml(Target = ViewControl.Table)]
+ public string ProvisioningState { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/Generated/Models/PSVirtualRouter.cs b/src/Network/Network/Generated/Models/PSVirtualRouter.cs
index 090cce4b7412..0925980abd52 100644
--- a/src/Network/Network/Generated/Models/PSVirtualRouter.cs
+++ b/src/Network/Network/Generated/Models/PSVirtualRouter.cs
@@ -16,19 +16,58 @@
using Microsoft.WindowsAzure.Commands.Common.Attributes;
using Newtonsoft.Json;
using System.Collections.Generic;
+using System.Linq;
+
namespace Microsoft.Azure.Commands.Network.Models
{
public partial class PSVirtualRouter : PSTopLevelResource
{
- [Ps1Xml(Target = ViewControl.Table)]
- public PSResourceId HostedGateway { get; set; }
+ public PSVirtualRouter()
+ {
+ }
+
+ public PSVirtualRouter(PSVirtualHub virtualHub)
+ {
+ this.Name = virtualHub.Name;
+ this.Id = virtualHub.Id;
+ this.ResourceGroupName = virtualHub.ResourceGroupName;
+ this.Location = virtualHub.Location;
+ this.ResourceGuid = virtualHub.ResourceGuid;
+ this.Type = virtualHub.Type;
+ this.VirtualNetworkConnections = new List();
+ var ipconfig = virtualHub.IpConfigurations.FirstOrDefault();
+ var virtualNetworkConnection = new PSHubIpConfiguration()
+ {
+ Name = ipconfig.Name,
+ HostedSubnet = ipconfig.Id,
+ ProvisioningState = ipconfig.ProvisioningState
+ };
+ this.VirtualNetworkConnections.Add(virtualNetworkConnection);
+ this.VirtualRouterAsn = virtualHub.VirtualRouterAsn;
+ this.VirtualRouterIps = virtualHub.VirtualRouterIps;
+ this.ProvisioningState = virtualHub.ProvisioningState;
+ this.Peerings = new List();
+ foreach (var connection in virtualHub.BgpConnections)
+ {
+ var peering = new PSVirtualRouterPeer()
+ {
+ Name = connection.Name,
+ PeerIp = connection.PeerIp,
+ PeerAsn = connection.PeerAsn,
+ ProvisioningState = connection.ProvisioningState
+ };
+ this.Peerings.Add(peering);
+ }
+ }
+
[Ps1Xml(Target = ViewControl.Table)]
public uint VirtualRouterAsn { get; set; }
[Ps1Xml(Target = ViewControl.Table)]
public List VirtualRouterIps { get; set; }
[Ps1Xml(Target = ViewControl.Table)]
public string ProvisioningState { get; set; }
+ public List VirtualNetworkConnections { get; set; }
public List Peerings { get; set; }
[JsonIgnore]
@@ -38,9 +77,9 @@ public string PeeringsText
}
[JsonIgnore]
- public string HostedGatewayText
+ public string VirtualNetworkConnectionsText
{
- get { return JsonConvert.SerializeObject(HostedGateway, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
+ get { return JsonConvert.SerializeObject(VirtualNetworkConnections, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/Generated/Models/PSVirtualRouterPeer.cs b/src/Network/Network/Generated/Models/PSVirtualRouterPeer.cs
index a99e86c0072f..53e8cdce702d 100644
--- a/src/Network/Network/Generated/Models/PSVirtualRouterPeer.cs
+++ b/src/Network/Network/Generated/Models/PSVirtualRouterPeer.cs
@@ -1,21 +1,4 @@
-// Copyright (c) Microsoft and contributors. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-using Microsoft.Azure.Management.Network.Models;
-using Microsoft.WindowsAzure.Commands.Common.Attributes;
-using Newtonsoft.Json;
-using System.Collections.Generic;
+using Microsoft.WindowsAzure.Commands.Common.Attributes;
namespace Microsoft.Azure.Commands.Network.Models
{
@@ -27,7 +10,5 @@ public partial class PSVirtualRouterPeer : PSChildResource
public string PeerIp { get; set; }
[Ps1Xml(Target = ViewControl.Table)]
public string ProvisioningState { get; set; }
- [Ps1Xml(Target = ViewControl.Table)]
- public string Type { get; set; }
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs b/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs
index 6095da359807..10f3ec0afe2a 100644
--- a/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs
+++ b/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs
@@ -78,6 +78,8 @@ public string[] PrivateRange {
public List Zones { get; set; }
+ public string AllowActiveFTP { get; set; }
+
[JsonIgnore]
public string IpConfigurationsText
{
diff --git a/src/Network/Network/Models/BYOIP/PSCustomIpPrefix.cs b/src/Network/Network/Models/BYOIP/PSCustomIpPrefix.cs
new file mode 100644
index 000000000000..2a21f05cc322
--- /dev/null
+++ b/src/Network/Network/Models/BYOIP/PSCustomIpPrefix.cs
@@ -0,0 +1,38 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ public class PSCustomIpPrefix : PSTopLevelResource
+ {
+ public string Cidr { get; set; }
+
+ public string CommissionedState { get; set; }
+
+ public List PublicIpPrefixes { get; set; }
+
+ public List Zones { get; set; }
+
+ public string ProvisioningState { get; set; }
+
+ [JsonIgnore]
+ public string PublicIpPrefixesText
+ {
+ get { return JsonConvert.SerializeObject(PublicIpPrefixes, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
+ }
+ }
+}
diff --git a/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs b/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs
index 1268d8a700e9..a26c7c9229f6 100644
--- a/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs
+++ b/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs
@@ -27,6 +27,9 @@ public class PSP2SConnectionConfiguration : PSChildResource
public PSRoutingConfiguration RoutingConfiguration { get; set; }
+ [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)]
+ public bool? EnableInternetSecurity { get; set; }
+
[JsonIgnore]
public string VpnClientAddressPoolText
{
diff --git a/src/Network/Network/Models/Cortex/PSVirtualHub.cs b/src/Network/Network/Models/Cortex/PSVirtualHub.cs
index 349f323ed716..f2ff719a4a9f 100644
--- a/src/Network/Network/Models/Cortex/PSVirtualHub.cs
+++ b/src/Network/Network/Models/Cortex/PSVirtualHub.cs
@@ -38,6 +38,14 @@ public class PSVirtualHub : PSTopLevelResource
public PSVirtualHubRouteTable RouteTable { get; set; }
+ public List IpConfigurations { get; set; }
+
+ public List BgpConnections { get; set; }
+
+ public uint VirtualRouterAsn { get; set; }
+
+ public List VirtualRouterIps { get; set; }
+
[Ps1Xml(Label = "Address Prefix", Target = ViewControl.Table)]
public string AddressPrefix { get; set; }
diff --git a/src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs b/src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs
new file mode 100644
index 000000000000..34edb0683cbf
--- /dev/null
+++ b/src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models.Cortex
+{
+ class PSVpnConnectionPacketCaptureResult : PSTopLevelResource
+ {
+ public string Code { get; set; }
+
+ public DateTime EndTime { get; set; }
+
+ public DateTime StartTime { get; set; }
+
+ public string ResultsText { get; set; }
+
+ public string LinkConnectionName { get; set; }
+
+ public PSVpnConnectionPacketCaptureResult()
+ {
+ this.Code = "Succeeded";
+ }
+
+ }
+}
diff --git a/src/Network/Network/Models/Cortex/PSVpnGateway.cs b/src/Network/Network/Models/Cortex/PSVpnGateway.cs
index b681834dd812..16fc08d04754 100644
--- a/src/Network/Network/Models/Cortex/PSVpnGateway.cs
+++ b/src/Network/Network/Models/Cortex/PSVpnGateway.cs
@@ -31,5 +31,7 @@ public class PSVpnGateway : PSTopLevelResource
[Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)]
public string ProvisioningState { get; set; }
+
+ public List IpConfigurations { get; set;}
}
-}
\ No newline at end of file
+}
diff --git a/src/Network/Network/Models/Cortex/PSVpnGatewayIpConfiguration.cs b/src/Network/Network/Models/Cortex/PSVpnGatewayIpConfiguration.cs
new file mode 100644
index 000000000000..428a819427e9
--- /dev/null
+++ b/src/Network/Network/Models/Cortex/PSVpnGatewayIpConfiguration.cs
@@ -0,0 +1,25 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSVpnGatewayIpConfiguration
+ {
+ public string Id { get; set; }
+
+ public string PublicIpAddress { get; set; }
+
+ public string PrivateIpAddress { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs b/src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs
new file mode 100644
index 000000000000..ea6f8470e8d6
--- /dev/null
+++ b/src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models.Cortex
+{
+ class PSVpnGatewayPacketCaptureResult : PSTopLevelResource
+ {
+ public string Code { get; set; }
+
+ public DateTime EndTime { get; set; }
+
+ public DateTime StartTime { get; set; }
+
+ public string ResultsText { get; set; }
+
+ public PSVpnGatewayPacketCaptureResult()
+ {
+ this.Code = "Succeeded";
+ }
+ }
+}
diff --git a/src/Network/Network/Models/PSPublicIpPrefix.cs b/src/Network/Network/Models/PSPublicIpPrefix.cs
index 03d6e14fffa7..d85c109fb5b4 100644
--- a/src/Network/Network/Models/PSPublicIpPrefix.cs
+++ b/src/Network/Network/Models/PSPublicIpPrefix.cs
@@ -35,6 +35,8 @@ public class PSPublicIpPrefix : PSTopLevelResource
public List PublicIpAddresses { get; set; }
+ public PSResourceId CustomIpPrefix { get; set; }
+
[JsonIgnore]
public string PublicIpAddressesText
{
diff --git a/src/Network/Network/Models/PSVirtualNetworkPeering.cs b/src/Network/Network/Models/PSVirtualNetworkPeering.cs
index 337ccef1277b..0be040f2db9b 100644
--- a/src/Network/Network/Models/PSVirtualNetworkPeering.cs
+++ b/src/Network/Network/Models/PSVirtualNetworkPeering.cs
@@ -56,6 +56,9 @@ public class PSVirtualNetworkPeering : PSChildResource
[JsonProperty(Order = 1)]
public PSAddressSpace RemoteVirtualNetworkAddressSpace { get; set; }
+ [JsonProperty(Order = 1)]
+ public PSVirtualNetworkBgpCommunities RemoteBgpCommunities { get; set; }
+
[JsonProperty(Order = 1)]
[Ps1Xml(Target = ViewControl.Table)]
public string ProvisioningState { get; set; }
@@ -76,6 +79,12 @@ public string RemoteGatewaysText
public string RemoteVirtualNetworkAddressSpaceText
{
get { return JsonConvert.SerializeObject(RemoteVirtualNetworkAddressSpace, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
- }
+ }
+
+ [JsonIgnore]
+ public string RemoteBgpCommunitiesText
+ {
+ get { return JsonConvert.SerializeObject(RemoteBgpCommunities, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
+ }
}
}
diff --git a/src/Network/Network/Network.csproj b/src/Network/Network/Network.csproj
index f88a5f0a86ea..773f4ea291d8 100644
--- a/src/Network/Network/Network.csproj
+++ b/src/Network/Network/Network.csproj
@@ -14,7 +14,7 @@
-
+
@@ -40,4 +40,4 @@
-
+
\ No newline at end of file
diff --git a/src/Network/Network/Network.format.ps1xml b/src/Network/Network/Network.format.ps1xml
index f18efb388906..7b7d01d8bc8c 100644
--- a/src/Network/Network/Network.format.ps1xml
+++ b/src/Network/Network/Network.format.ps1xml
@@ -1375,6 +1375,15 @@
RemoteVirtualNetworkAddressSpaceText
+
+
+ RemoteBgpCommunitiesText
+
+
+ !($_.RemoteBgpCommunities -eq $null)
+
+
+
@@ -1483,6 +1492,68 @@
+
+
+ Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix
+
+ Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix
+
+
+
+
+
+
+
+ Name
+
+
+
+ ResourceGroupName
+
+
+
+ Location
+
+
+
+ Id
+
+
+
+ Etag
+
+
+
+ ResourceGuid
+
+
+
+ ProvisioningState
+
+
+
+ TagsTable
+
+
+
+ Cidr
+
+
+
+ CommissionedState
+
+
+
+ PublicIpPrefixesText
+
+
+
+ Zones
+
+
+
+
+
Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix
@@ -5338,8 +5409,8 @@
ProvisioningState
-
- HostedGatewayText
+
+ VirtualNetworkConnectionsText
diff --git a/src/Network/Network/Properties/Resources.Designer.cs b/src/Network/Network/Properties/Resources.Designer.cs
index 80d069c1b285..b68f61a384c4 100644
--- a/src/Network/Network/Properties/Resources.Designer.cs
+++ b/src/Network/Network/Properties/Resources.Designer.cs
@@ -267,6 +267,15 @@ internal static string ChildResourceAlreadyPresentInResourceGroup {
}
}
+ ///
+ /// Looks up a localized string similar to Cannot have both 'Commission' and 'Decomission' flags set.
+ ///
+ internal static string CommissioningStateConflict {
+ get {
+ return ResourceManager.GetString("CommissioningStateConflict", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Connection monitor test group contains duplicates in destination endpoint names. Destination endpoint names in testGroup must be unique..
///
diff --git a/src/Network/Network/Properties/Resources.resx b/src/Network/Network/Properties/Resources.resx
index 36e06c980d34..bd9e39a440a1 100644
--- a/src/Network/Network/Properties/Resources.resx
+++ b/src/Network/Network/Properties/Resources.resx
@@ -692,4 +692,8 @@
A valid HubRouteTable reference is required.
+
+ Cannot have both 'Commission' and 'Decomission' flags set
+ Error message for setting the customIpPrefix
+
\ No newline at end of file
diff --git a/src/Network/Network/PublicIpPrefix/NewAzurePublicIpPrefixCommand.cs b/src/Network/Network/PublicIpPrefix/NewAzurePublicIpPrefixCommand.cs
index bc83345ef07f..5f73b783961d 100644
--- a/src/Network/Network/PublicIpPrefix/NewAzurePublicIpPrefixCommand.cs
+++ b/src/Network/Network/PublicIpPrefix/NewAzurePublicIpPrefixCommand.cs
@@ -96,6 +96,12 @@ public class NewAzurePublicIpPrefixCommand : PublicIpPrefixBaseCmdlet
ValueFromPipelineByPropertyName = true)]
public string[] Zone { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The CustomIpPrefix that this PublicIpPrefix will be associated with")]
+ public PSCustomIpPrefix CustomIpPrefix { get; set; }
+
[Parameter(
Mandatory = false,
ValueFromPipelineByPropertyName = true,
@@ -165,6 +171,8 @@ private PSPublicIpPrefix CreatePublicIpPrefix()
publicIpPrefix.IpTags = this.IpTag?.ToList();
}
+ publicIpPrefix.CustomIpPrefix = this.CustomIpPrefix;
+
var theModel = NetworkResourceManagerProfile.Mapper.Map(publicIpPrefix);
theModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
diff --git a/src/Network/Network/VirtualRouter/GetAzureRMVirtualRouterCommand.cs b/src/Network/Network/VirtualRouter/GetAzureRMVirtualRouterCommand.cs
index 7163d774c1ea..0129e80a96be 100644
--- a/src/Network/Network/VirtualRouter/GetAzureRMVirtualRouterCommand.cs
+++ b/src/Network/Network/VirtualRouter/GetAzureRMVirtualRouterCommand.cs
@@ -26,7 +26,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualRouter", DefaultParameterSetName = VirtualRouterParameterSetNames.ByVirtualRouterName), OutputType(typeof(PSVirtualRouter))]
+ [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualRouter", DefaultParameterSetName = VirtualRouterParameterSetNames.ByVirtualRouterSubscriptionId), OutputType(typeof(PSVirtualRouter))]
public partial class GetAzureRmVirtualRouter : VirtualRouterBaseCmdlet
{
[Parameter(
@@ -55,7 +55,7 @@ public partial class GetAzureRmVirtualRouter : VirtualRouterBaseCmdlet
HelpMessage = "ResourceId of the virtual router.",
ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
- [ResourceIdCompleter("Microsoft.Network/virtualRouters")]
+ [ResourceIdCompleter("Microsoft.Network/virtualHubs")]
public string ResourceId { get; set; }
public override void Execute()
@@ -69,42 +69,50 @@ public override void Execute()
RouterName = resourceInfo.ResourceName;
}
+ string ipConfigName = "ipconfig1";
if (ShouldGetByName(ResourceGroupName, RouterName))
{
- var vVirtualRouter = this.NetworkClient.NetworkManagementClient.VirtualRouters.Get(ResourceGroupName, RouterName);
- var vVirtualRouterModel = NetworkResourceManagerProfile.Mapper.Map(vVirtualRouter);
- vVirtualRouterModel.ResourceGroupName = this.ResourceGroupName;
- vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(vVirtualRouter.Tags);
- AddPeeringsToPSVirtualRouter(vVirtualRouter, vVirtualRouterModel, ResourceGroupName, RouterName);
- WriteObject(vVirtualRouterModel, true);
+ var virtualHub = this.NetworkClient.NetworkManagementClient.VirtualHubs.Get(ResourceGroupName, RouterName);
+ var virtualHubModel = NetworkResourceManagerProfile.Mapper.Map(virtualHub);
+ virtualHubModel.ResourceGroupName = this.ResourceGroupName;
+ virtualHubModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ AddBgpConnectionsToPSVirtualHub(virtualHub, virtualHubModel, ResourceGroupName, RouterName);
+ AddIpConfigurtaionToPSVirtualHub(virtualHubModel, this.ResourceGroupName, RouterName, ipConfigName);
+
+ var virtualRouterModel = new PSVirtualRouter(virtualHubModel);
+ virtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ WriteObject(virtualRouterModel, true);
}
else
{
- IPage vVirtualRouterPage;
- if(ShouldListByResourceGroup(ResourceGroupName, RouterName))
+ IPage virtualHubPage;
+ if (ShouldListByResourceGroup(ResourceGroupName, RouterName))
{
- vVirtualRouterPage = this.NetworkClient.NetworkManagementClient.VirtualRouters.ListByResourceGroup(this.ResourceGroupName);
+ virtualHubPage = this.NetworkClient.NetworkManagementClient.VirtualHubs.ListByResourceGroup(this.ResourceGroupName);
}
else
{
- vVirtualRouterPage = this.NetworkClient.NetworkManagementClient.VirtualRouters.List();
+ virtualHubPage = this.NetworkClient.NetworkManagementClient.VirtualHubs.List();
}
- var vVirtualRouterList = ListNextLink.GetAllResourcesByPollingNextLink(vVirtualRouterPage,
- this.NetworkClient.NetworkManagementClient.VirtualRouters.ListNext);
- List psVirtualRouterList = new List();
- foreach (var vVirtualRouter in vVirtualRouterList)
+ var virtualHubList = ListNextLink.GetAllResourcesByPollingNextLink(virtualHubPage,
+ this.NetworkClient.NetworkManagementClient.VirtualHubs.ListNext);
+ List virtualRouterList = new List();
+ foreach (var virtualHub in virtualHubList)
{
- RouterName = vVirtualRouter.Name;
- var vVirtualRouterModel = NetworkResourceManagerProfile.Mapper.Map(vVirtualRouter);
- vVirtualRouterModel.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(vVirtualRouter.Id);
- vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(vVirtualRouter.Tags);
- AddPeeringsToPSVirtualRouter(vVirtualRouter, vVirtualRouterModel, ResourceGroupName, RouterName);
+ RouterName = virtualHub.Name;
+ var virtualHubModel = NetworkResourceManagerProfile.Mapper.Map(virtualHub);
+ virtualHubModel.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(virtualHub.Id);
+ virtualHubModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ AddBgpConnectionsToPSVirtualHub(virtualHub, virtualHubModel, ResourceGroupName, RouterName);
+ AddIpConfigurtaionToPSVirtualHub(virtualHubModel, this.ResourceGroupName, RouterName, ipConfigName);
- psVirtualRouterList.Add(vVirtualRouterModel);
+ var virtualRouterModel = new PSVirtualRouter(virtualHubModel);
+ virtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ virtualRouterList.Add(virtualRouterModel);
}
- WriteObject(psVirtualRouterList, true);
+ WriteObject(virtualRouterList, true);
}
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/VirtualRouter/NewAzureRMVirtualRouterCommand.cs b/src/Network/Network/VirtualRouter/NewAzureRMVirtualRouterCommand.cs
index cb5a1ea79204..f9f6db21f7a8 100644
--- a/src/Network/Network/VirtualRouter/NewAzureRMVirtualRouterCommand.cs
+++ b/src/Network/Network/VirtualRouter/NewAzureRMVirtualRouterCommand.cs
@@ -28,7 +28,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualRouter", SupportsShouldProcess = true, DefaultParameterSetName = VirtualRouterParameterSetNames.ByHostedGateway), OutputType(typeof(PSVirtualRouter))]
+ [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualRouter", SupportsShouldProcess = true, DefaultParameterSetName = VirtualRouterParameterSetNames.ByVirtualRouterName), OutputType(typeof(PSVirtualRouter))]
public partial class NewAzureRmVirtualRouter : VirtualRouterBaseCmdlet
{
[Parameter(
@@ -49,18 +49,9 @@ public partial class NewAzureRmVirtualRouter : VirtualRouterBaseCmdlet
[Parameter(
Mandatory = true,
- ValueFromPipelineByPropertyName = true,
- ParameterSetName = VirtualRouterParameterSetNames.ByHostedGateway,
- HelpMessage = "The gateway where Virtual Router needs to be hosted.")]
- public PSVirtualNetworkGateway HostedGateway { get; set; }
-
- [Parameter(
- Mandatory = true,
- ValueFromPipelineByPropertyName = true,
- ParameterSetName = VirtualRouterParameterSetNames.ByHostedGatewayId,
- HelpMessage = "The id of gateway where Virtual Router needs to be hosted.")]
- [ResourceIdCompleter("Microsoft.Network/virtualNetworkGateways")]
- public string HostedGatewayId { get; set; }
+ HelpMessage = "The subnet where the virtual router is hosted.")]
+ [ValidateNotNullOrEmpty]
+ public string HostedSubnet { get; set; }
[Parameter(
Mandatory = true,
@@ -87,10 +78,11 @@ public override void Execute()
{
base.Execute();
+
var present = true;
try
{
- this.NetworkClient.NetworkManagementClient.VirtualRouters.Get(this.ResourceGroupName, this.Name);
+ this.NetworkClient.NetworkManagementClient.VirtualHubs.Get(this.ResourceGroupName, this.Name);
}
catch (Exception ex)
{
@@ -109,24 +101,7 @@ public override void Execute()
{
throw new PSArgumentException(string.Format(Properties.Resources.ResourceAlreadyPresentInResourceGroup, this.Name, this.ResourceGroupName));
}
-
- string hostedGatewayId = null;
-
- //// Resolve the virtual wan
- if (ParameterSetName.Equals(VirtualRouterParameterSetNames.ByHostedGateway, StringComparison.OrdinalIgnoreCase))
- {
- hostedGatewayId = this.HostedGateway.Id;
- }
- else if (ParameterSetName.Equals(VirtualRouterParameterSetNames.ByHostedGatewayId, StringComparison.OrdinalIgnoreCase))
- {
- hostedGatewayId = this.HostedGatewayId;
- }
-
- if (string.IsNullOrWhiteSpace(hostedGatewayId))
- {
- throw new PSArgumentException(Properties.Resources.VirtualGatewayRequiredForVirtualRouter);
- }
-
+
ConfirmAction(
Properties.Resources.CreatingResourceMessage,
@@ -134,26 +109,37 @@ public override void Execute()
() =>
{
WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name));
- PSVirtualRouter virtualRouter = new PSVirtualRouter
+ PSVirtualHub virtualHub = new PSVirtualHub
{
ResourceGroupName = this.ResourceGroupName,
Name = this.Name,
- HostedGateway = new PSResourceId() { Id = hostedGatewayId },
- Location = this.Location,
- VirtualRouterAsn = GatewayAsn
+ Location = this.Location
};
- var vVirtualRouterModel = NetworkResourceManagerProfile.Mapper.Map(virtualRouter);
- vVirtualRouterModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+ virtualHub.RouteTables = new List();
+ string ipConfigName = "ipconfig1";
+ HubIpConfiguration ipconfig = new HubIpConfiguration
+ {
+ Subnet = new Subnet() { Id = this.HostedSubnet }
+ };
- this.NetworkClient.NetworkManagementClient.VirtualRouters.CreateOrUpdate(this.ResourceGroupName, this.Name, vVirtualRouterModel);
- var getVirtualRouter = this.NetworkClient.NetworkManagementClient.VirtualRouters.Get(this.ResourceGroupName, this.Name);
- var psVirtualRouter = NetworkResourceManagerProfile.Mapper.Map(getVirtualRouter);
- psVirtualRouter.ResourceGroupName = this.ResourceGroupName;
- psVirtualRouter.Tag = TagsConversionHelper.CreateTagHashtable(getVirtualRouter.Tags);
- WriteObject(psVirtualRouter, true);
+ var virtualHubModel = NetworkResourceManagerProfile.Mapper.Map(virtualHub);
+ virtualHubModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+ virtualHubModel.Sku = "Standard";
+
+ this.NetworkClient.NetworkManagementClient.VirtualHubs.CreateOrUpdate(this.ResourceGroupName, this.Name, virtualHubModel);
+ this.NetworkClient.NetworkManagementClient.VirtualHubIpConfiguration.CreateOrUpdate(this.ResourceGroupName, this.Name, ipConfigName, ipconfig);
+ virtualHubModel = this.NetworkClient.NetworkManagementClient.VirtualHubs.Get(this.ResourceGroupName, this.Name);
+
+ virtualHub = NetworkResourceManagerProfile.Mapper.Map(virtualHubModel);
+ virtualHub.ResourceGroupName = this.ResourceGroupName;
+ AddIpConfigurtaionToPSVirtualHub(virtualHub, this.ResourceGroupName, this.Name, ipConfigName);
+
+ var virtualRouter = new PSVirtualRouter(virtualHub);
+ virtualRouter.Tag = TagsConversionHelper.CreateTagHashtable(virtualHubModel.Tags);
+ WriteObject(virtualRouter, true);
});
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/VirtualRouter/RemoveAzureRMVirtualRouterCommand.cs b/src/Network/Network/VirtualRouter/RemoveAzureRMVirtualRouterCommand.cs
index 5d820e204d37..81db9a71c44c 100644
--- a/src/Network/Network/VirtualRouter/RemoveAzureRMVirtualRouterCommand.cs
+++ b/src/Network/Network/VirtualRouter/RemoveAzureRMVirtualRouterCommand.cs
@@ -98,7 +98,10 @@ public override void Execute()
this.RouterName,
() =>
{
- this.NetworkClient.NetworkManagementClient.VirtualRouters.Delete(ResourceGroupName, RouterName);
+ string ipConfigName = "ipconfig1";
+
+ this.NetworkClient.NetworkManagementClient.VirtualHubIpConfiguration.Delete(ResourceGroupName, RouterName, ipConfigName);
+ this.NetworkClient.NetworkManagementClient.VirtualHubs.Delete(ResourceGroupName, RouterName);
if (PassThru)
{
WriteObject(true);
diff --git a/src/Network/Network/VirtualRouter/VirtualRouterBaseCmdlet.cs b/src/Network/Network/VirtualRouter/VirtualRouterBaseCmdlet.cs
index c44634b19a44..20dd45f43a49 100644
--- a/src/Network/Network/VirtualRouter/VirtualRouterBaseCmdlet.cs
+++ b/src/Network/Network/VirtualRouter/VirtualRouterBaseCmdlet.cs
@@ -15,28 +15,38 @@
using Microsoft.Azure.Management.Network;
using Microsoft.Azure.Management.Network.Models;
using CNM = Microsoft.Azure.Commands.Network.Models;
+using System.Collections.Generic;
+using System.Management.Automation;
namespace Microsoft.Azure.Commands.Network
{
public class VirtualRouterBaseCmdlet : NetworkBaseCmdlet
{
- // Gateway ASN which gets populated for VirtualRouter as VR resides inside GW
+ // Gateway ASN which gets populated for VirtualHub as VR resides inside GW
public const int GatewayAsn = 65515;
- public void AddPeeringsToPSVirtualRouter (VirtualRouter vVirtualRouter,
- CNM.PSVirtualRouter vVirtualRouterModel,
+ public void AddBgpConnectionsToPSVirtualHub(VirtualHub virtualHub,
+ CNM.PSVirtualHub virtualHubModel,
string resourceGroupName,
string routerName)
{
- if (vVirtualRouter.Peerings != null && vVirtualRouter.Peerings.Count > 0)
+ var bgpConnections = this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.List(resourceGroupName, routerName);
+ var bgpConnectionList = ListNextLink.GetAllResourcesByPollingNextLink(bgpConnections, this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListNext);
+ foreach (var connection in bgpConnectionList)
{
- var vVirtualRouterPeering = this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.List(resourceGroupName, routerName);
- var vVirtualRouterPeeringList = ListNextLink.GetAllResourcesByPollingNextLink(vVirtualRouterPeering, this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.ListNext);
- foreach (var peering in vVirtualRouterPeeringList)
- {
- vVirtualRouterModel.Peerings.Add(NetworkResourceManagerProfile.Mapper.Map(peering));
- }
+ virtualHubModel.BgpConnections.Add(NetworkResourceManagerProfile.Mapper.Map(connection));
}
}
+
+ public void AddIpConfigurtaionToPSVirtualHub(CNM.PSVirtualHub virtualHubModel,
+ string resourceGroupName,
+ string routerName,
+ string ipConfigName)
+ {
+ var ipConfigModel = this.NetworkClient.NetworkManagementClient.VirtualHubIpConfiguration.Get(resourceGroupName, routerName, ipConfigName);
+ var ipconfig = NetworkResourceManagerProfile.Mapper.Map(ipConfigModel);
+ virtualHubModel.IpConfigurations = new List();
+ virtualHubModel.IpConfigurations.Add(ipconfig);
+ }
}
}
\ No newline at end of file
diff --git a/src/Network/Network/VirtualRouter/VirtualRouterParameterSetNames.cs b/src/Network/Network/VirtualRouter/VirtualRouterParameterSetNames.cs
index 31d912d8afd6..21ea25fb4fda 100644
--- a/src/Network/Network/VirtualRouter/VirtualRouterParameterSetNames.cs
+++ b/src/Network/Network/VirtualRouter/VirtualRouterParameterSetNames.cs
@@ -16,8 +16,7 @@ namespace Microsoft.Azure.Commands.Network
{
internal static class VirtualRouterParameterSetNames
{
- internal const string ByHostedGateway = "HostedGatewayParameterSet";
- internal const string ByHostedGatewayId = "HostedGatewayIdParameterSet";
+ internal const string ByVirtualRouterSubscriptionId = "VirtualRouterSubscriptionIdParameterSet";
internal const string ByVirtualRouterResourceId = "VirtualRouterResourceIdParameterSet";
internal const string ByVirtualRouterInputObject = "VirtualRouterInputObjectParameterSet";
internal const string ByVirtualRouterName = "VirtualRouterNameParameterSet";
diff --git a/src/Network/Network/VirtualRouterPeer/AddAzureRMVirtualRouterPeerCommand.cs b/src/Network/Network/VirtualRouterPeer/AddAzureRMVirtualRouterPeerCommand.cs
index 0a719540a304..55ce97de83ff 100644
--- a/src/Network/Network/VirtualRouterPeer/AddAzureRMVirtualRouterPeerCommand.cs
+++ b/src/Network/Network/VirtualRouterPeer/AddAzureRMVirtualRouterPeerCommand.cs
@@ -85,7 +85,7 @@ public override void Execute()
var present = true;
try
{
- this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.Get(this.ResourceGroupName, this.VirtualRouterName, this.PeerName);
+ this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnection.Get(this.ResourceGroupName, this.VirtualRouterName, this.PeerName);
}
catch (Exception ex)
{
@@ -111,25 +111,30 @@ public override void Execute()
() =>
{
WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.PeerName));
- PSVirtualRouterPeer virtualRouterPeer = new PSVirtualRouterPeer
+ PSVirtualRouterPeer peer = new PSVirtualRouterPeer
{
PeerAsn = this.PeerAsn,
PeerIp = this.PeerIp,
Name = this.PeerName
};
-
- var vVirtualRouterPeerModel = NetworkResourceManagerProfile.Mapper.Map(virtualRouterPeer);
-
- this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.CreateOrUpdate(this.ResourceGroupName, this.VirtualRouterName, this.PeerName, vVirtualRouterPeerModel);
- var getVirtualRouter = this.NetworkClient.NetworkManagementClient.VirtualRouters.Get(this.ResourceGroupName, this.VirtualRouterName);
- var vVirtualRouterModel = NetworkResourceManagerProfile.Mapper.Map(getVirtualRouter);
- vVirtualRouterModel.ResourceGroupName = this.ResourceGroupName;
- vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(getVirtualRouter.Tags);
- AddPeeringsToPSVirtualRouter(getVirtualRouter, vVirtualRouterModel, ResourceGroupName, this.VirtualRouterName);
-
- WriteObject(vVirtualRouterModel, true);
+ string ipConfigName = "ipconfig1";
+
+ var bgpConnectionModel = NetworkResourceManagerProfile.Mapper.Map(peer);
+
+ this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnection.CreateOrUpdate(this.ResourceGroupName, this.VirtualRouterName, this.PeerName, bgpConnectionModel);
+ var virtualHub = this.NetworkClient.NetworkManagementClient.VirtualHubs.Get(this.ResourceGroupName, this.VirtualRouterName);
+ var virtualHubModel = NetworkResourceManagerProfile.Mapper.Map(virtualHub);
+ virtualHubModel.ResourceGroupName = this.ResourceGroupName;
+ virtualHubModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ AddBgpConnectionsToPSVirtualHub(virtualHub, virtualHubModel, ResourceGroupName, this.VirtualRouterName);
+ AddIpConfigurtaionToPSVirtualHub(virtualHubModel, this.ResourceGroupName, this.VirtualRouterName, ipConfigName);
+
+ var VirtualRouterModel = new PSVirtualRouter(virtualHubModel);
+ VirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+
+ WriteObject(VirtualRouterModel, true);
});
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/VirtualRouterPeer/GetAzureRMVirtualRouterPeerCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzureRMVirtualRouterPeerCommand.cs
index eed10ae3bff4..075194788895 100644
--- a/src/Network/Network/VirtualRouterPeer/GetAzureRMVirtualRouterPeerCommand.cs
+++ b/src/Network/Network/VirtualRouterPeer/GetAzureRMVirtualRouterPeerCommand.cs
@@ -64,7 +64,7 @@ public partial class GetAzureRmVirtualRouterPeer : NetworkBaseCmdlet
HelpMessage = "ResourceId of the virtual router peer.",
ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
- [ResourceIdCompleter("Microsoft.Network/virtualRouters/peerings")]
+ [ResourceIdCompleter("Microsoft.Network/virtualHubs/bgpConnections")]
public string ResourceId { get; set; }
public override void Execute()
@@ -79,9 +79,10 @@ public override void Execute()
VirtualRouterName = resourceInfo.ParentResource;
}
- var vVirtualRouterPeer = this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.Get(ResourceGroupName, VirtualRouterName, PeerName);
- var vVirtualRouterPeerModel = NetworkResourceManagerProfile.Mapper.Map(vVirtualRouterPeer);
- WriteObject(vVirtualRouterPeerModel, true);
+ var bgpConnection = this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnection.Get(ResourceGroupName, VirtualRouterName, PeerName);
+ var peerModel = NetworkResourceManagerProfile.Mapper.Map(bgpConnection);
+
+ WriteObject(peerModel, true);
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/VirtualRouterPeer/RemoveAzureRMVirtualRouterPeerCommand.cs b/src/Network/Network/VirtualRouterPeer/RemoveAzureRMVirtualRouterPeerCommand.cs
index 6457a7dd05ef..79fbbb6d334e 100644
--- a/src/Network/Network/VirtualRouterPeer/RemoveAzureRMVirtualRouterPeerCommand.cs
+++ b/src/Network/Network/VirtualRouterPeer/RemoveAzureRMVirtualRouterPeerCommand.cs
@@ -67,7 +67,7 @@ public partial class RemoveAzureRmVirtualRouterPeer : VirtualRouterBaseCmdlet
ValueFromPipelineByPropertyName = true,
HelpMessage = "The virtual router peer resource Id.")]
[ValidateNotNullOrEmpty]
- [ResourceIdCompleter("Microsoft.Network/virtualRouters/peerings")]
+ [ResourceIdCompleter("Microsoft.Network/virtualHubs/bgpConnections")]
public string ResourceId { get; set; }
[Parameter(
@@ -85,7 +85,7 @@ public override void Execute()
var parsedResourceId = new ResourceIdentifier(InputObject.Id);
PeerName = parsedResourceId.ResourceName;
ResourceGroupName = parsedResourceId.ResourceGroupName;
- VirtualRouterName = parsedResourceId.ParentResource;
+ VirtualRouterName = parsedResourceId.ParentResource;
}
else if (ParameterSetName.Equals(VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerResourceId, StringComparison.OrdinalIgnoreCase))
{
@@ -104,15 +104,21 @@ public override void Execute()
PeerName,
() =>
{
- this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.Delete(ResourceGroupName, VirtualRouterName, PeerName);
- var vVirtualRouter = this.NetworkClient.NetworkManagementClient.VirtualRouters.Get(ResourceGroupName, VirtualRouterName);
- var vVirtualRouterModel = NetworkResourceManagerProfile.Mapper.Map(vVirtualRouter);
- vVirtualRouterModel.ResourceGroupName = this.ResourceGroupName;
- vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(vVirtualRouter.Tags);
- AddPeeringsToPSVirtualRouter(vVirtualRouter, vVirtualRouterModel, ResourceGroupName, this.VirtualRouterName);
+ string ipConfigName = "ipconfig1";
+
+ this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnection.Delete(ResourceGroupName, VirtualRouterName, PeerName);
+ var virtualHub = this.NetworkClient.NetworkManagementClient.VirtualHubs.Get(ResourceGroupName, VirtualRouterName);
+ var virtualHubModel = NetworkResourceManagerProfile.Mapper.Map(virtualHub);
+ virtualHubModel.ResourceGroupName = this.ResourceGroupName;
+ virtualHubModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ AddBgpConnectionsToPSVirtualHub(virtualHub, virtualHubModel, ResourceGroupName, this.VirtualRouterName);
+ AddIpConfigurtaionToPSVirtualHub(virtualHubModel, this.ResourceGroupName, this.VirtualRouterName, ipConfigName);
+
+ var vVirtualRouterModel = new PSVirtualRouter(virtualHubModel);
+ vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
WriteObject(vVirtualRouterModel, true);
});
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/VirtualRouterPeer/UpdateAzureRMVirtualRouterPeerCommand.cs b/src/Network/Network/VirtualRouterPeer/UpdateAzureRMVirtualRouterPeerCommand.cs
index 32ae9691af6d..a9b6d6ad9dec 100644
--- a/src/Network/Network/VirtualRouterPeer/UpdateAzureRMVirtualRouterPeerCommand.cs
+++ b/src/Network/Network/VirtualRouterPeer/UpdateAzureRMVirtualRouterPeerCommand.cs
@@ -86,7 +86,7 @@ public partial class UpdateAzureRmVirtualRouterPeer : VirtualRouterBaseCmdlet
ValueFromPipelineByPropertyName = true,
HelpMessage = "The virtual router peer resource Id.")]
[ValidateNotNullOrEmpty]
- [ResourceIdCompleter("Microsoft.Network/virtualRouters/peerings")]
+ [ResourceIdCompleter("Microsoft.Network/virtualHubs/bgpConnections")]
public string ResourceId { get; set; }
[Parameter(
@@ -114,11 +114,11 @@ public override void Execute()
base.Execute();
var present = true;
- VirtualRouterPeering existingVirtualRouterPeer = null;
+ BgpConnection existingBgpConnection = null;
try
{
- existingVirtualRouterPeer = this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.Get(this.ResourceGroupName, this.VirtualRouterName, this.PeerName);
+ existingBgpConnection = this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnection.Get(this.ResourceGroupName, this.VirtualRouterName, this.PeerName);
}
catch (Microsoft.Rest.Azure.CloudException exception)
{
@@ -141,8 +141,8 @@ public override void Execute()
if (ParameterSetName.Equals(VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerResourceId, StringComparison.OrdinalIgnoreCase))
{
var parsedResourceId = new ResourceIdentifier(ResourceId);
- PeerAsn = (uint) existingVirtualRouterPeer.PeerAsn;
- PeerIp = existingVirtualRouterPeer.PeerIp;
+ PeerAsn = (uint)existingBgpConnection.PeerAsn;
+ PeerIp = existingBgpConnection.PeerIp;
}
ConfirmAction(
@@ -151,25 +151,31 @@ public override void Execute()
() =>
{
WriteVerbose(String.Format(Properties.Resources.UpdatingLongRunningOperationMessage, this.ResourceGroupName, this.PeerName));
- PSVirtualRouterPeer virtualRouterPeer = new PSVirtualRouterPeer
+ PSVirtualRouterPeer peer = new PSVirtualRouterPeer
{
Name = this.PeerName,
PeerAsn = this.PeerAsn,
PeerIp = this.PeerIp
};
+ string ipConfigName = "ipconfig1";
- var vVirtualRouterPeerModel = NetworkResourceManagerProfile.Mapper.Map(virtualRouterPeer);
+
+ var bgpConnectionModel = NetworkResourceManagerProfile.Mapper.Map(peer);
- this.NetworkClient.NetworkManagementClient.VirtualRouterPeerings.CreateOrUpdate(this.ResourceGroupName, this.VirtualRouterName, this.PeerName, vVirtualRouterPeerModel);
- var getVirtualRouter = this.NetworkClient.NetworkManagementClient.VirtualRouters.Get(this.ResourceGroupName, this.VirtualRouterName);
- var vVirtualRouterModel = NetworkResourceManagerProfile.Mapper.Map(getVirtualRouter);
- vVirtualRouterModel.ResourceGroupName = this.ResourceGroupName;
- vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(getVirtualRouter.Tags);
- AddPeeringsToPSVirtualRouter(getVirtualRouter, vVirtualRouterModel, ResourceGroupName, this.VirtualRouterName);
+ this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnection.CreateOrUpdate(this.ResourceGroupName, this.VirtualRouterName, this.PeerName, bgpConnectionModel);
+ var virtualHub = this.NetworkClient.NetworkManagementClient.VirtualHubs.Get(this.ResourceGroupName, this.VirtualRouterName);
+ var virtualHubModel = NetworkResourceManagerProfile.Mapper.Map(virtualHub);
+ virtualHubModel.ResourceGroupName = this.ResourceGroupName;
+ virtualHubModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
+ AddBgpConnectionsToPSVirtualHub(virtualHub, virtualHubModel, ResourceGroupName, this.VirtualRouterName);
+ AddIpConfigurtaionToPSVirtualHub(virtualHubModel, this.ResourceGroupName, this.VirtualRouterName, ipConfigName);
+
+ var vVirtualRouterModel = new PSVirtualRouter(virtualHubModel);
+ vVirtualRouterModel.Tag = TagsConversionHelper.CreateTagHashtable(virtualHub.Tags);
WriteObject(vVirtualRouterModel, true);
});
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Network/Network/help/Add-AzVirtualRouterPeer.md b/src/Network/Network/help/Add-AzVirtualRouterPeer.md
index e06626345aac..90e6bef83f96 100644
--- a/src/Network/Network/help/Add-AzVirtualRouterPeer.md
+++ b/src/Network/Network/help/Add-AzVirtualRouterPeer.md
@@ -21,7 +21,6 @@ Add-AzVirtualRouterPeer -ResourceGroupName -PeerName -PeerIp <
## DESCRIPTION
The **Add-AzVirtualRouterPeer** cmdlet adds a VirtualRouter Peer to an Azure VirtualRouter
-
## EXAMPLES
### Example 1
@@ -35,7 +34,7 @@ Add-AzVirtualRouterPeer 1ResourceGroupName virtualRouterRG -PeerName csr -PeerIp
Run cmdlet in the background
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -50,7 +49,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -65,7 +64,7 @@ Accept wildcard characters: False
Do not ask for confirmation if you want to overwrite a resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -80,7 +79,7 @@ Accept wildcard characters: False
Peer ASN.
```yaml
-Type: UInt32
+Type: System.UInt32
Parameter Sets: (All)
Aliases:
@@ -95,7 +94,7 @@ Accept wildcard characters: False
Peer Ip.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -110,7 +109,7 @@ Accept wildcard characters: False
The name of the virtual router Peer.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceName
@@ -125,7 +124,7 @@ Accept wildcard characters: False
The resource group name of the virtual router/peer.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -140,7 +139,7 @@ Accept wildcard characters: False
The virtual router where peer exists.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -155,7 +154,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -171,7 +170,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
@@ -183,7 +182,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
diff --git a/src/Network/Network/help/Get-AzCustomIpPrefix.md b/src/Network/Network/help/Get-AzCustomIpPrefix.md
new file mode 100644
index 000000000000..eeddad27a690
--- /dev/null
+++ b/src/Network/Network/help/Get-AzCustomIpPrefix.md
@@ -0,0 +1,133 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azcustomipprefix
+schema: 2.0.0
+---
+
+# Get-AzCustomIpPrefix
+
+## SYNOPSIS
+Gets a CustomIpPrefix resource
+
+## SYNTAX
+
+### GetByNameParameterSet (Default)
+```
+Get-AzCustomIpPrefix [-Name ] [-ResourceGroupName ] [-DefaultProfile ]
+ []
+```
+
+### GetByResourceIdParameterSet
+```
+Get-AzCustomIpPrefix -ResourceId [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzCustomIpPrefix** cmdlet gets one or more CustomIpPrefixes given the set of input parameters
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzPublicIpPrefix -ResourceGroupName myRg -Name myCustomIpPrefix
+
+Name : myCustomIpPrefix
+ResourceGroupName : myRg
+Location : westus
+Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byoip-test-rg/providers/Micro
+ soft.Network/customIPPrefixes/testCustomIpPrefix
+Etag : W/"00000000-0000-0000-0000-000000000000"
+ResourceGuid : 00000000-0000-0000-0000-000000000000
+ProvisioningState : Succeeded
+Tags :
+Cidr : 111.111.111.111/24
+CommissionedState : Provisioning
+PublicIpPrefixes : []
+Zones : {}
+```
+
+This command gets a CustomIpPrefix resource named myCustomIpPrefix in resource group myRg
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: String
+Parameter Sets: GetByNameParameterSet
+Aliases: ResourceName
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: String
+Parameter Sets: GetByNameParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The resource id.
+
+```yaml
+Type: String
+Parameter Sets: GetByResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix
+
+## NOTES
+
+## RELATED LINKS
+
+[New-AzCustomIpPrefix](./New-AzCustomIpPrefix.md)
+
+[Remove-AzCustomIpPrefix](./Remove-AzCustomIpPrefix.md)
+
+[Update-AzCustomIpPrefix](./Update-AzCustomIpPrefix.md)
\ No newline at end of file
diff --git a/src/Network/Network/help/Get-AzVirtualRouter.md b/src/Network/Network/help/Get-AzVirtualRouter.md
index 9709d90a7fe1..45baf1fcea41 100644
--- a/src/Network/Network/help/Get-AzVirtualRouter.md
+++ b/src/Network/Network/help/Get-AzVirtualRouter.md
@@ -12,7 +12,12 @@ Get an Azure VirtualRouter
## SYNTAX
-### VirtualRouterNameParameterSet (Default)
+### VirtualRouterSubscriptionIdParameterSet (Default)
+```
+Get-AzVirtualRouter [-DefaultProfile ] []
+```
+
+### VirtualRouterNameParameterSet
```
Get-AzVirtualRouter -ResourceGroupName [-RouterName ]
[-DefaultProfile ] []
@@ -30,7 +35,7 @@ The **Get-AzVirtualRouter** cmdlet gets an Azure VirtualRouter
### Example 1
```powershell
-Get-AzVirtualRouter -ResourceGroupName virtualRouterRG -RouterName virtualRouter
+Get-AzVirtualRouter -ResourceGroupName virtualRouterRG -RouterName virtualRouter
```
### Example 2
@@ -45,7 +50,7 @@ Get-AzVirtualRouter -ResourceId $virtualRouterId
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -60,11 +65,11 @@ Accept wildcard characters: False
The resource group name of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterNameParameterSet
Aliases:
-Required: False
+Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -75,7 +80,7 @@ Accept wildcard characters: False
ResourceId of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterResourceIdParameterSet
Aliases:
@@ -90,7 +95,7 @@ Accept wildcard characters: False
The name of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterNameParameterSet
Aliases: ResourceName
@@ -102,7 +107,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeer.md b/src/Network/Network/help/Get-AzVirtualRouterPeer.md
index 720e1946fe87..afa6a6f292eb 100644
--- a/src/Network/Network/help/Get-AzVirtualRouterPeer.md
+++ b/src/Network/Network/help/Get-AzVirtualRouterPeer.md
@@ -10,7 +10,6 @@ schema: 2.0.0
## SYNOPSIS
Gets a VirtualRouter peer in an Azure VirtualRouter
-
## SYNTAX
### VirtualRouterPeerNameParameterSet (Default)
@@ -46,7 +45,7 @@ Get-AzVirtualRouterPeer -ResourceId $virtualRouterPeerId
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -61,11 +60,11 @@ Accept wildcard characters: False
The name of the virtual router peer.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterPeerNameParameterSet
Aliases: ResourceName
-Required: False
+Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -76,11 +75,11 @@ Accept wildcard characters: False
The resource group name of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterPeerNameParameterSet
Aliases:
-Required: False
+Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -91,7 +90,7 @@ Accept wildcard characters: False
ResourceId of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterPeerResourceIdParameterSet
Aliases:
@@ -106,11 +105,11 @@ Accept wildcard characters: False
The name of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VirtualRouterPeerNameParameterSet
Aliases:
-Required: False
+Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -118,7 +117,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
diff --git a/src/Network/Network/help/Get-AzVpnGateway.md b/src/Network/Network/help/Get-AzVpnGateway.md
index e8bfef95da9b..77ac60951322 100644
--- a/src/Network/Network/help/Get-AzVpnGateway.md
+++ b/src/Network/Network/help/Get-AzVpnGateway.md
@@ -44,6 +44,7 @@ Location : West US
VpnGatewayScaleUnit : 2
VirtualHub : /subscriptions/{subscriptionId}/resourceGroups/Ali_pS_Test/providers/Microsoft.Network/virtualHubs/westushub
BgpSettings : {}
+IpConfigurations : {Instance0, Instance1}
Type : Microsoft.Network/vpnGateways
ProvisioningState : Succeeded
```
@@ -65,6 +66,7 @@ Location : West US
VpnGatewayScaleUnit : 2
VirtualHub : /subscriptions/{subscriptionId}/resourceGroups/Ali_pS_Test/providers/Microsoft.Network/virtualHubs/westushub
BgpSettings : {}
+IpConfigurations : {Instance0, Instance1}
Type : Microsoft.Network/vpnGateways
ProvisioningState : Succeeded
@@ -75,6 +77,7 @@ Location : West US
VpnGatewayScaleUnit : 2
VirtualHub : /subscriptions/{subscriptionId}/resourceGroups/Ali_pS_Test/providers/Microsoft.Network/virtualHubs/westushub
BgpSettings : {}
+IpConfigurations : {Instance0, Instance1}
Type : Microsoft.Network/vpnGateways
ProvisioningState : Succeeded
```
diff --git a/src/Network/Network/help/New-AzCustomIpPrefix.md b/src/Network/Network/help/New-AzCustomIpPrefix.md
new file mode 100644
index 000000000000..66bb3d91032c
--- /dev/null
+++ b/src/Network/Network/help/New-AzCustomIpPrefix.md
@@ -0,0 +1,209 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azcustomipprefix
+schema: 2.0.0
+---
+
+# New-AzCustomIpPrefix
+
+## SYNOPSIS
+Creates a CustomIpPrefix resource
+
+## SYNTAX
+
+```
+New-AzCustomIpPrefix -Name -ResourceGroupName -Location -Cidr
+ [-Zone ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+## DESCRIPTION
+The **New-AzCustomIpPrefix** cmdlet creates a CustomIpPrefix resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $myCustomIpPrefix = New-AzCustomIpPrefix -Name $prefixName -ResourceGroupName $rgName -Cidr 40.40.40.0/24 -Location westus
+```
+
+This command creates a new CustomIpPrefix resource with name $prefixName in resource group $rgName with a cidr of 40.40.40.0/24 in westus
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Cidr
+The CustomIpPrefix CIDR.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Location
+The CustomIpPrefix location.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Tag
+A hashtable which represents resource tags.
+
+```yaml
+Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Zone
+A list of availability zones denoting the IP allocated for the resource needs to come from.
+
+```yaml
+Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### System.String[]
+
+### System.Collections.Hashtable
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix
+
+## NOTES
+
+## RELATED LINKS
+
+[Get-AzCustomIpPrefix](./Get-AzCustomIpPrefix.md)
+
+[Remove-AzCustomIpPrefix](./Remove-AzCustomIpPrefix.md)
+
+[Update-AzCustomIpPrefix](./Update-AzCustomIpPrefix.md)
\ No newline at end of file
diff --git a/src/Network/Network/help/New-AzFirewall.md b/src/Network/Network/help/New-AzFirewall.md
index 08367a3568ef..f7f8c41ea1d9 100644
--- a/src/Network/Network/help/New-AzFirewall.md
+++ b/src/Network/Network/help/New-AzFirewall.md
@@ -20,7 +20,7 @@ New-AzFirewall -Name -ResourceGroupName -Location
[-NatRuleCollection ]
[-NetworkRuleCollection ] [-ThreatIntelMode ]
[-ThreatIntelWhitelist ] [-PrivateRange ] [-EnableDnsProxy]
- [-DnsProxyNotRequiredForNetworkRule] [-DnsServer ] [-Tag ] [-Force] [-AsJob]
+ [-DnsProxyNotRequiredForNetworkRule] [-DnsServer ] [-AllowActiveFTP] [-Tag ] [-Force] [-AsJob]
[-Zone ] [-Sku ] [-VirtualHubId ] [-HubIPAddresses ]
[-FirewallPolicyId ] [-DefaultProfile ] [-WhatIf] [-Confirm]
[]
@@ -33,7 +33,7 @@ New-AzFirewall -Name -ResourceGroupName -Location -Vi
[-NatRuleCollection ]
[-NetworkRuleCollection ] [-ThreatIntelMode ]
[-ThreatIntelWhitelist ] [-PrivateRange ] [-EnableDnsProxy]
- [-DnsProxyNotRequiredForNetworkRule] [-DnsServer ] [-Tag ] [-Force] [-AsJob]
+ [-DnsProxyNotRequiredForNetworkRule] [-DnsServer ] [-AllowActiveFTP] [-Tag ] [-Force] [-AsJob]
[-Zone ] [-Sku ] [-VirtualHubId ] [-HubIPAddresses ]
[-FirewallPolicyId ] [-DefaultProfile ] [-WhatIf] [-Confirm]
[]
@@ -47,7 +47,7 @@ New-AzFirewall -Name -ResourceGroupName -Location -Vi
[-NatRuleCollection ]
[-NetworkRuleCollection ] [-ThreatIntelMode ]
[-ThreatIntelWhitelist ] [-PrivateRange ] [-EnableDnsProxy]
- [-DnsProxyNotRequiredForNetworkRule] [-DnsServer ] [-Tag ] [-Force] [-AsJob]
+ [-DnsProxyNotRequiredForNetworkRule] [-DnsServer ] [-AllowActiveFTP] [-Tag ] [-Force] [-AsJob]
[-Zone ] [-Sku ] [-VirtualHubId ] [-HubIPAddresses ]
[-FirewallPolicyId ] [-DefaultProfile ] [-WhatIf] [-Confirm]
[]
@@ -242,6 +242,16 @@ $fw=New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location westus -Sku
This example creates a Firewall attached to virtual hub "hub" in the same resource group as the firewall.
The Firewall will be assigned 2 public IPs that are created implicitly.
+### 16: Create a Firewall with Allow Active FTP.
+```
+$rgName = "resourceGroupName"
+$vnet = Get-AzVirtualNetwork -ResourceGroupName $rgName -Name "vnet"
+$pip = Get-AzPublicIpAddress -ResourceGroupName $rgName -Name "publicIpName"
+New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -VirtualNetwork $vnet -PublicIpAddress $pip -AllowActiveFTP
+```
+
+This example creates a Firewall with allow active FTP flag.
+
## PARAMETERS
### -ApplicationRuleCollection
@@ -323,6 +333,22 @@ Accept wildcard characters: False
Enable DNS Proxy. By default it is disabled.
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -AllowActiveFTP
+Allows Active FTP on the Firewall. By default it is disabled.
+
+
```yaml
Type: SwitchParameter
Parameter Sets: (All)
diff --git a/src/Network/Network/help/New-AzP2sVpnGateway.md b/src/Network/Network/help/New-AzP2sVpnGateway.md
index c68ee7aaa94d..c96872ec969c 100644
--- a/src/Network/Network/help/New-AzP2sVpnGateway.md
+++ b/src/Network/Network/help/New-AzP2sVpnGateway.md
@@ -15,7 +15,7 @@ Create a new P2SVpnGateway under VirtualHub for point to site connectivity.
### ByVirtualHubNameByVpnServerConfigurationObject (Default)
```
New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit
- -VirtualHubName [-VpnServerConfiguration ] -VpnClientAddressPool [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ -VirtualHubName [-VpnServerConfiguration ] -VpnClientAddressPool [-CustomDnsServer ] [-EnableInternetSecurityFlag] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
[-Confirm] []
```
@@ -23,7 +23,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU
```
New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit
-VirtualHubName -VpnServerConfigurationId -VpnClientAddressPool
- [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-CustomDnsServer ] [-EnableInternetSecurityFlag] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
[-Confirm] []
```
@@ -31,7 +31,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU
```
New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit
-VirtualHub [-VpnServerConfiguration ]
- -VpnClientAddressPool [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob]
+ -VpnClientAddressPool [-CustomDnsServer ] [-EnableInternetSecurityFlag] [-RoutingConfiguration ] [-Tag ] [-AsJob]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
@@ -39,7 +39,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU
```
New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit
-VirtualHub -VpnServerConfigurationId -VpnClientAddressPool
- [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-CustomDnsServer ] [-EnableInternetSecurityFlag] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
[-Confirm] []
```
@@ -47,7 +47,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU
```
New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit
-VirtualHubId [-VpnServerConfiguration ] -VpnClientAddressPool
- [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-CustomDnsServer ] [-EnableInternetSecurityFlag] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
[-Confirm] []
```
@@ -55,7 +55,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU
```
New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit
-VirtualHubId -VpnServerConfigurationId -VpnClientAddressPool
- [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-CustomDnsServer ] [-EnableInternetSecurityFlag] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
[-Confirm] []
```
@@ -70,7 +70,7 @@ PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName P2SCortexGATesting -Na
PS C:\> $vpnServerConfig1 = Get-AzVpnServerConfiguration -ResourceGroupName P2SCortexGATesting -Name WestUsConfig
PS C:\> $vpnClientAddressSpaces = New-Object string[] 1
PS C:\> $vpnClientAddressSpaces[0] = "192.168.2.0/24"
-PS C:\> $createdP2SVpnGateway = New-AzP2sVpnGateway -ResourceGroupName P2SCortexGATesting -Name 683482ade8564515aed4b8448c9757ea-westus-gw -VirtualHub $virtualHub -VpnGatewayScaleUnit 1 -VpnClientAddressPool $vpnClientAddressSpaces -VpnServerConfiguration $vpnServerConfig1
+PS C:\> $createdP2SVpnGateway = New-AzP2sVpnGateway -ResourceGroupName P2SCortexGATesting -Name 683482ade8564515aed4b8448c9757ea-westus-gw -VirtualHub $virtualHub -VpnGatewayScaleUnit 1 -VpnClientAddressPool $vpnClientAddressSpaces -VpnServerConfiguration $vpnServerConfig1 -EnableInternetSecurityFlag
ResourceGroupName : P2SCortexGATesting
Name : 683482ade8564515aed4b8448c9757ea-westus-gw
@@ -92,6 +92,7 @@ P2SConnectionConfigurations : [
"192.168.2.0/24"
]
},
+ "EnableInternetSecurity": True,
"RoutingConfiguration": {
"AssociatedRouteTable": {
"Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable"
@@ -195,6 +196,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -EnableInternetSecurityFlag
+Enable internet security flag for this P2SVpnGateway connections
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -RoutingConfiguration
Routing configuration for this connection
diff --git a/src/Network/Network/help/New-AzVirtualRouter.md b/src/Network/Network/help/New-AzVirtualRouter.md
index 0ff92a0ea70f..c741495fb1c9 100644
--- a/src/Network/Network/help/New-AzVirtualRouter.md
+++ b/src/Network/Network/help/New-AzVirtualRouter.md
@@ -12,16 +12,8 @@ Creates an Azure VirtualRouter.
## SYNTAX
-### HostedGatewayParameterSet (Default)
```
-New-AzVirtualRouter -ResourceGroupName -Name -HostedGateway
- -Location [-Tag ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf]
- [-Confirm] []
-```
-
-### HostedGatewayIdParameterSet
-```
-New-AzVirtualRouter -ResourceGroupName -Name -HostedGatewayId -Location
+New-AzVirtualRouter -ResourceGroupName -Name -HostedSubnet -Location
[-Tag ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm]
[]
```
@@ -29,19 +21,14 @@ New-AzVirtualRouter -ResourceGroupName -Name -HostedGatewayId
## DESCRIPTION
The **New-AzVirtualRouter** cmdlet creates an Azure VirtualRouter
-
## EXAMPLES
### Example 1
```powershell
-$gatewayId = '/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/virtualRouterRG/providers/Microsoft.Network/virtualNetworkGateways/erGateway'
-New-AzVirtualRouter -RouterName virtualRouter -ResourceGroupName virtualRouterRG -Location 'West US' -HostedGatewayId $gatewayId
-```
-
-### Example 2
-```powershell
-$gateway = Get-AzVirtualNetworkGateway -Name erGateway -ResourceGroupName virtualRouterRG
-New-AzVirtualRouter -RouterName virtualRouter -ResourceGroupName virtualRouterRG -Location 'West US' -HostedGateway $gateway
+$subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24
+$vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $resourceGroupName -Location $resourceGroupLocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet
+$subnetId = (Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet).Id
+New-AzVirtualRouter -Name $virtualRouterName -ResourceGroupName $resourceGroupName -Location $resourceGroupLocation -HostedSubnet $subnetId
```
## PARAMETERS
@@ -50,7 +37,7 @@ New-AzVirtualRouter -RouterName virtualRouter -ResourceGroupName virtualRouterRG
Run cmdlet in the background
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -65,7 +52,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -80,7 +67,7 @@ Accept wildcard characters: False
Do not ask for confirmation if you want to overwrite a resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -91,33 +78,18 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -HostedGateway
-The gateway where Virtual Router needs to be hosted.
-
-```yaml
-Type: PSVirtualNetworkGateway
-Parameter Sets: HostedGatewayParameterSet
-Aliases:
-
-Required: True
-Position: Named
-Default value: None
-Accept pipeline input: True (ByPropertyName)
-Accept wildcard characters: False
-```
-
-### -HostedGatewayId
-The id of gateway where Virtual Router needs to be hosted.
+### -HostedSubnet
+The subnet where the virtual router is hosted.
```yaml
-Type: String
-Parameter Sets: HostedGatewayIdParameterSet
+Type: System.String
+Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
-Accept pipeline input: True (ByPropertyName)
+Accept pipeline input: False
Accept wildcard characters: False
```
@@ -125,7 +97,7 @@ Accept wildcard characters: False
The location.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -140,7 +112,7 @@ Accept wildcard characters: False
The name of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceName
@@ -155,7 +127,7 @@ Accept wildcard characters: False
The resource group name of the virtual router.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -170,7 +142,7 @@ Accept wildcard characters: False
A hashtable which represents resource tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
@@ -185,7 +157,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -201,7 +173,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
@@ -213,15 +185,12 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### System.String
-### Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway
-
### System.Collections.Hashtable
## OUTPUTS
diff --git a/src/Network/Network/help/Remove-AzCustomIpPrefix.md b/src/Network/Network/help/Remove-AzCustomIpPrefix.md
new file mode 100644
index 000000000000..d99134751767
--- /dev/null
+++ b/src/Network/Network/help/Remove-AzCustomIpPrefix.md
@@ -0,0 +1,220 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-azcustomipprefix
+schema: 2.0.0
+---
+
+# Remove-AzCustomIpPrefix
+
+## SYNOPSIS
+Removes a CustomIpPrefix
+
+## SYNTAX
+
+### DeleteByNameParameterSet (Default)
+```
+Remove-AzCustomIpPrefix -Name -ResourceGroupName